JavaScript Fundamentals: Primitives Versus Primitive Objects

preview_player
Показать описание
In this tutorial I'm going to cover JavaScript primitives and their object equivalent. This is a concept not fully understood even by those that have been in JavaScript for a while.

Would you like to help keep this channel going?

For more resources on JavaScript:

#javascript #AllThingsJavaScriptLLC
Рекомендации по теме
Комментарии
Автор

You should make a channel all things typescript

dixztube
Автор

how it wrap non primitives, it change prototype?

valikonen
Автор

I am following your content on skillshare... But sir why do you remove your content from skillshare? 😢😢😢

kajalpramanik
Автор

Ah, so, when I create a primitive string and an object string;

let myPrimitiveString = "String primitive";
let myNewObjString = new String('String primitive');

Is the primitive myPrimitiveString simply obfuscating the .toString() when I call it in the console.log?



karlstenator