How it works? (explain with Pseudocode) Input html string:<a>Link<b>LinkBold</a>Bold</b> Convert string to array of tag element through Regex: [ {tagStart: "a"}, {string: "Link"}, {tagStart: "b"}, {string: "LinkBold"}, {tagClose: "a"}, {string: "Bold"}, {tagClose: ...
Write pseudocode in English Add comments to explain your process to yourself Use functions to "black box" pieces of code Break code into logical bits Only do one thing at a time Don't do too much on one line There's no such thing as too manyprint()s ...