Javascript JavaScript considers the syntax to end when it breaks. var jb1 = 'Lorem' var jb2 = 'Ipsum' However, if the syntax is not complete, it interprets up to the next line. in short var jb1 = 'Lorem' var jb1 = 'Lorem' The above two methods are the same. Use a semicolon (;) to clearly indicate that the syntax is finished. var jb1 = 'Lorem'; var jb2 = 'Ipsum'; Using a semicolon is optional, bu..