Closed parasmamgain closed 4 months ago
;
) at the end of the line where the semicolon is missing.\n\nExample:\n\njavascript\n// Incorrect:\nlet myVar = 10\n// Correct:\nlet myVar = 10;\n
\n\nRelevant documentation:\n\n Semicolon in JavaScript\n\nNote: While semicolons are optional in some cases, it's generally considered best practice to include them to avoid potential errors. \n
missing semicolon