Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Undefined | Data Types and Variables
Introduction to JavaScript (staging)
course content

Contenido del Curso

Introduction to JavaScript (staging)

Introduction to JavaScript (staging)

1. Introduction
2. JavaScript syntax
3. Data Types and Variables

Undefined

What is Undefined

Undefined is also a data type in JavaScript just like the null. When a variable is created or declared without assigning any value to it, then the value of the variable will be set as undefined by default.

12
let age; console.log(age);
copy

Tarea

Declare a variable numberOfItems and assign the value of undefined to the variable and show the value of the variable.

Tarea

Declare a variable numberOfItems and assign the value of undefined to the variable and show the value of the variable.

So, undefined variables can also be declared using the undefined keyword.

Cambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones

¿Todo estuvo claro?

Sección 3. Capítulo 31
toggle bottom row

Undefined

What is Undefined

Undefined is also a data type in JavaScript just like the null. When a variable is created or declared without assigning any value to it, then the value of the variable will be set as undefined by default.

12
let age; console.log(age);
copy

Tarea

Declare a variable numberOfItems and assign the value of undefined to the variable and show the value of the variable.

Tarea

Declare a variable numberOfItems and assign the value of undefined to the variable and show the value of the variable.

So, undefined variables can also be declared using the undefined keyword.

Cambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones

¿Todo estuvo claro?

Sección 3. Capítulo 31
toggle bottom row

Undefined

What is Undefined

Undefined is also a data type in JavaScript just like the null. When a variable is created or declared without assigning any value to it, then the value of the variable will be set as undefined by default.

12
let age; console.log(age);
copy

Tarea

Declare a variable numberOfItems and assign the value of undefined to the variable and show the value of the variable.

Tarea

Declare a variable numberOfItems and assign the value of undefined to the variable and show the value of the variable.

So, undefined variables can also be declared using the undefined keyword.

Cambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones

¿Todo estuvo claro?

What is Undefined

Undefined is also a data type in JavaScript just like the null. When a variable is created or declared without assigning any value to it, then the value of the variable will be set as undefined by default.

12
let age; console.log(age);
copy

Tarea

Declare a variable numberOfItems and assign the value of undefined to the variable and show the value of the variable.

So, undefined variables can also be declared using the undefined keyword.

Cambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
Sección 3. Capítulo 31
Cambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
We're sorry to hear that something went wrong. What happened?
some-alt