Answers for "do you need a semicolon in javascript"

14

do you need a semicolon in javascript

// semicolons are optional because javascript is smart to detect where a line of code ends!!!
console.log(45)
console.log(45);

// there still the same
Posted by: Guest on September-11-2020

Code answers related to "do you need a semicolon in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language