null vs undefined | variable life cycle | JavaScript Basics ( before Typescript , node js ) - 2 смотреть онлайн
JavaScript - null vs undefined Values/ Types
?Contents -Topics covered in this video :
➡️ What is Variable Life Cycle?
➡️ Different phases life cycle
➡️ Declaration phase
➡️ Initialization phase
➡️ Assignment phase
➡️ Difference null vs undefined
➡️ Similarities null vs undefined
➡️ Code in Online Editors
➡️ Differences between Reference and Primitive Values/ Types
---
Previous Video :
Primitive Type vs Reference Type | JavaScript Basics ( before Typescript , node js ) - 1
https://youtu.be/M8Or1bA7HD0
---
A variable can hold one of two value types: primitive values or reference values. When you assign a value to a variable, the JavaScript engine will determine whether the value is a primitive or reference value.
Under the hood When the engine works with variables, their lifecycle consists of the following phases
Javascript Interview Series | null vs undefined
Declaration phase is registering a variable in the scope. IN declaration phase variable is not defined.
Initialization phase is allocating memory and creating a binding for the variable in the scope. At this step, the variable is automatically initialized with undefined.
Assignment phase is assigning a value to the initialized variable. For example, let’s see how this really works.
Null vs Undefined - JavaScript
Difference between undefined and null
JavaScript null vs. undefined
#null #undefined #nullvsundefined
5 Interview Questions on NULL vs UNDEFINED
---
Hi guys , i hope you are learning good from videos , in this form you can "Request a Video or Course" and we will make a playlist or Video based on answers , please do fill form and share to many , link :
⚡️ https://forms.gle/Sz1ao7L524ynq2yg8
---
?Donate us : https://www.paypal.me/sandeepmachiraju
---
? FOLLOW US ON Twitter : https://twitter.com/MrkTutorials
? FOLLOW US ON Instagram : https://www.instagram.com/mrk_tutorials/
Reach us at :
? : [email protected]
Telegram Channel :
? : https://t.me/mrktutorials
Credits :
? Tutor Name & Editing : Sandeep Machiraju
Follow on :
⚡️ https://www.instagram.com/sandeep_machiraju/
⚡️ https://www.facebook.com/sandeepM20598
Reference Vs Value In JavaScript
-TypeScript is an open-source programming language developed and maintained by Microsoft. It is a strict syntactical superset of JavaScript, and adds optional static typing to the language. In this typescript tutorial for beginners, we go over the fundamental concepts like variable declarations, variable types, functions, interfaces, classes and access modifiers.
? Video Alert : ➡️ https://youtu.be/YNoJ-Vi6VPg
⚡️ We are in - Links Above ⚡️
?Telegram : https://t.me/mrktutorials
? Facebook : https://www.facebook.com/mrktutorials
? Instagram : https://www.instagram.com/mrk_tutorials/
?Twitter : https://twitter.com/MrkTutorials
What is JavaScript ?
JavaScript was initially created to “make web pages alive”.
JavaScript is an open and cross platform, dynamic computer programming language which is developed to implement complex features on web pages . It is a scripting language , which is used on both client and server side. JavaScript is the language of web development. Most interactions you have with websites, including buttons you click, forms you fill, and emails you send, are implemented with JavaScript.
console.log(typeof null);
console.log(typeof undefined);
console.log(null === undefined);
console.log(null == undefined);
console.log(null === null);
console.log(null == null);
console.log(!null);
console.log(isNaN(1 + null));
console.log(isNaN(1 + undefined));
Output :
object
undefined
false
true
true
true
true
false
true
Data Types in JavaScript (Primitive & Reference Types)
JavaScript was initially created as a browser-only language, but it is now used in many other environments as well.
Object based vs object oriented language
Primitive types :
It consists of Number, String, Boolean, null, and undefined. -Es6 symbol
Example :
var a = 10;
var b = a;
console.log(a); // 10;
console.log(b); // 10;
Reference types :
It consists of Array, Object, and Function.
Example :
var x = {name: ‘MRK Tutorials’};
var y = x;
y.name = Subscribed;
console.log(x.name); // Subscribed
---------------------- Telugu ------------------------
➡️ How To Get Started in Figma : https://youtu.be/ZZRU6UIMsGA
➡️ Understanding Figma Workspace : https://youtu.be/ZZRU6UIMsGA
➡️Creating First Instagram Post : https://youtu.be/UUi5HNfoZMM
----------------------
---------------------- English ---------------------
➡️ What is DOM ? : https://youtu.be/a0ax0yXSHiw
➡️ What is Document Interface ? : https://youtu.be/EVNbGVMlANs
➡️ Property vs Method vs Attribute : https://youtu.be/dXEJcw7XNqQ
➡️ DOM Element : https://youtu.be/hr5yQ1VwF0I
----------------------
Что делает видео по-настоящему запоминающимся? Наверное, та самая атмосфера, которая заставляет забыть о времени. Когда вы заходите на RUVIDEO, чтобы посмотреть онлайн «null vs undefined | variable life cycle | JavaScript Basics ( before Typescript , node js ) - 2» бесплатно и без регистрации, вы рассчитываете на нечто большее, чем просто загрузку плеера. И мы это понимаем. Контент такого уровня заслуживает того, чтобы его смотрели в HD 1080, без дрожания картинки и бесконечного буферизации.
Честно говоря, Rutube сегодня — это кладезь уникальных находок, которые часто теряются в общем шуме. Мы же вытаскиваем на поверхность самое интересное. Будь то динамичный экшн, глубокий разбор темы от любимого автора или просто уютное видео для настроения — всё это доступно здесь бесплатно и без лишних формальностей. Никаких «заполните анкету, чтобы продолжить». Только вы, ваш экран и качественный поток.
Если вас зацепило это видео, не забудьте взглянуть на похожие материалы в блоке справа. Мы откалибровали наши алгоритмы так, чтобы они подбирали контент не просто «по тегам», а по настроению и смыслу. Ведь в конечном итоге, онлайн-кинотеатр — это не склад файлов, а место, где каждый вечер можно найти свою историю. Приятного вам отдыха на RUVIDEO!
Видео взято из открытых источников Rutube. Если вы правообладатель, обратитесь к первоисточнику.