Dionuta / B5-Undefined

Explains difference between undefined and not defined.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

B5-Undefined

A deep dive into the strange world of JavaScript

What Was Learned

  • Undefined
  • Not defined

Notes

'Undefined' is a special value in JavaScript meaning the variable has not been set. In the initial phase of the execution context, all variables that have not been assigned are set to undefined. Undefined is a value unlike 'not defined.' 'Not defined' means during the execution the variable or function was not found in memory.

About

Explains difference between undefined and not defined.


Languages

Language:JavaScript 59.4%Language:HTML 40.6%