Skip to content

Instantly share code, notes, and snippets.

@pszponder
Created June 24, 2021 22:55
Show Gist options
  • Save pszponder/9421efbd6bc5e33e1e884253ed612b04 to your computer and use it in GitHub Desktop.
Save pszponder/9421efbd6bc5e33e1e884253ed612b04 to your computer and use it in GitHub Desktop.
```js
// Lines 1 and 2 are equivalent to stating:
// let x = "Hello";
let x; // Line 1
x = "Hello"; // Line 2
console.log(x); // Line 3
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment