Skip to content

Instantly share code, notes, and snippets.

@reime005
Created December 27, 2020 21:01
Show Gist options
  • Save reime005/0eae30c810bc09dc3cc0a9d79732d4b0 to your computer and use it in GitHub Desktop.
Save reime005/0eae30c810bc09dc3cc0a9d79732d4b0 to your computer and use it in GitHub Desktop.
let test = 1;
console.log(test); // prints '1'
test = 'test';
console.log(test); // prints 'test'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment