Hacker News new | ask | show | jobs
by rhubarbcustard 4408 days ago
Could you explain why the * works in there?
1 comments

JS does automatic type conversion in this case, so it's syntactically correct to multiply a string with a number (or function result). We're just interested in the side-effects of alert(), so it doesn't really matter what kind of expression we use it in, as long as it parses correctly and causes alert() to be executed (evaluated).
Nice!