In JavaScript, semicolons are used to terminate statements. However, JavaScript allows you to omit the semicolon in certain situations. This feature is called automatic semicolon insertion (ASI), which is the topic of this blog.
What is Automatic Sem...