codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Follow publication

JavaScript — Null vs. Undefined

Brandon Morelli
codeburst
Published in
3 min readJan 11, 2018

--

What is null?

let a = null;console.log(a);
// null

What is undefined?

let b;console.log(b);
// undefined
let c = undefined;console.log(c);
// undefined
var d = {};console.log(d.fake);
// undefined

Similarities between null and undefined

let a = null;
let b;
console.log(typeof a);
// object
console.log(typeof b);
// undefined

null !== undefined

null !== undefined 
null == undefined

Practical Differences

let logHi = (str = 'hi') => {
console.log(str);
}
logHi();
// hi
logHi('bye');
// bye
logHi(undefined);
// hi
logHi(null);
// null

Summary

Closing Notes:

If this post was helpful, please click the clap 👏 button below a few times to show your support! ⬇⬇

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Published in codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Written by Brandon Morelli

Creator of @codeburstio — Frequently posting web development tutorials & articles. Follow me on Twitter too: @BrandonMorelli

Responses (25)

Write a response