Skip to content

Instantly share code, notes, and snippets.

@wpweb101
Last active April 15, 2021 13:19
Show Gist options
  • Save wpweb101/63db50487009524da5b221118dc25d20 to your computer and use it in GitHub Desktop.
Save wpweb101/63db50487009524da5b221118dc25d20 to your computer and use it in GitHub Desktop.
JavaScript Multiline statement
var a;
var b;
var c;
// Good Example
var examplestring = 'this is example ' + a +
'string that spans into' + B +
'three lines' + c;
// Bad example
var examplestring = '<p>this is example' + a +' with ' + b + 'three lines' + c;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment