Skip to content

Instantly share code, notes, and snippets.

@wpweb101
Created April 15, 2021 13:29
Show Gist options
  • Save wpweb101/9b9259fa6318a76a1ef3b9e5b295fa17 to your computer and use it in GitHub Desktop.
Save wpweb101/9b9259fa6318a76a1ef3b9e5b295fa17 to your computer and use it in GitHub Desktop.
JavaScript Declaring variables
// Correct
var a, b, c = 'JavaScript';
// InCorrect
var a = 'JavaScript';
var b = 'JavaScript';
var c = 'JavaScript';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment