parasmamgain / hello-world

0 stars 0 forks source link

missing semicolon #16

Closed parasmamgain closed 4 months ago

parasmamgain commented 4 months ago

missing semicolon

git-guru-pm[bot] commented 4 months ago

Missing semicolon\n\nDescription:\n\nThe code is missing a semicolon at the end of a statement.\n\nPossible solutions:\n\n Add a semicolon: Simply add a semicolon (;) 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