DEV Community

Discussion on: ✒️ JavaScript syntax mini quiz

Collapse
 
lazerfx profile image
Peter Street

var <varname> = - the classic.
let <varname> = - the modern.
const <varname> = - the unchanging
<varname> = - the 'oops I made this global by not actually using one'
window.<varname> = - the 'deliberate' global

At a guess, anyway... Been wracking my brains to back when I started with classic ASP and early JS in the likes of IE 6 and such, and this is all I can remember... but the brain's not what it used to be, so probably wrong :D

Collapse
 
adam_cyclones profile image
Adam Crockett 🌀

Very nice, can you guess the bonus and deprecated variable from js 1.8?

Collapse
 
lazerfx profile image
Peter Street

Nope :D I never followed the language definition that far back, I have to admit - and Googling the MDN releases isn't very helpful.

Thread Thread
 
adam_cyclones profile image
Adam Crockett 🌀
Thread Thread
 
lazerfx profile image
Peter Street

It's a shortcut for creating linked lists? I can see why it got deprecated. Looks like it was a mozilla only tooling...

Thread Thread
 
adam_cyclones profile image
Adam Crockett 🌀

I have no idea, I didn't stick around to find out. 😂

Collapse
 
paulooze profile image
Pavol Porubský

For clarification, <varname> = throws an error in 'strict mode' which means you can't use them inside type="module" scripts, as they are in strict mode by default (source: developer.mozilla.org/en-US/docs/W...).

Collapse
 
lazerfx profile image
Peter Street

Definitely - and that's one reason using 'strict' is a massively good thing to do :D Or, perhaps better, use TypeScript and benefit from a more deliberate variable declaration syntax.