virtual-labs / structural-dynamics-iiith-ph2

Other
0 stars 74 forks source link

Missing semicolon. (semi) #250

Open BSravanthi opened 6 years ago

BSravanthi commented 6 years ago

JavaScript is unique amongst the C-like languages in that it doesn't require semicolons at the end of each statement. In many cases, the JavaScript engine can determine that a semicolon should be in a certain spot and will automatically add it. This feature is known as automatic semicolon insertion (ASI) and is considered one of the more controversial features of JavaScript. On the first line, the JavaScript engine will automatically insert a semicolon, so this is not considered a syntax error. The JavaScript engine still knows how to interpret the line and knows that the line end indicates the end of the statement. In the debate over ASI, there are generally two schools of thought. The first is that we should treat ASI as if it didn't exist and always include semicolons manually. The rationale is that it's easier to always include semicolons than to try to remember when they are or are not required.

//Bad:
var name = "ESLint" 

//Good:
var website = "eslint.org";

Please refer to the following link to fix similar issues. https://app.codacy.com/app/BSravanthi/structural-dynamics-iiith/issues?&filters=W3siaWQiOiJMYW5ndWFnZSIsInZhbHVlcyI6W251bGxdfSx7ImlkIjoiQ2F0ZWdvcnkiLCJ2YWx1ZXMiOlsiQ29kZSBTdHlsZSJdfSx7ImlkIjoiTGV2ZWwiLCJ2YWx1ZXMiOltudWxsXX0seyJpZCI6IlBhdHRlcm4iLCJ2YWx1ZXMiOlsxNTU1XX0seyJ2YWx1ZXMiOltdfV0=

SakethMattupalli commented 6 years ago

issue fixed: exp1 quizconfig.js: adb4dd9 exp 10 quizconfig.js: e0c27d4 exp2 quizconfig.js: 8c58b5d exp3 quizconfig.js: 40ca46b exp4 quizconfig.js:
531e3b3 exp5 quizconfig.js: 5ad635d exp6 quizconfig.js: 9020933 exp7 quizconfig.js: 01f9f6c exp8 quizconfig.js: be2f1a6 exp9 quizconfig.js: 07d3589

dmeghana98 commented 6 years ago

Valid fix @SakethMattupalli

snehitharangu commented 6 years ago

Valid fix @SakethMattupalli