Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Aprende What are Variables? | Data Types and Variables
Introduction to JavaScript

book
What are Variables?

What are Variables?

Variables are the memory locations that are used to store data. In JavaScript, we use the let, const, and var (var is not used now) keywords to declare a variable.

By using let we can re-assign the value to a variable. Values can not be reassigned if they are created using const.

The following statement creates a variable named message.

let message;
1
let message;
copy

Now we can assign some data to the variables by using the assignment operator sign (=), for example.

let message;
message = 'Hello';
// or you can do it in one line as well like this
// let message = 'Hello';
console.log(message);
12345
let message; message = 'Hello'; // or you can do it in one line as well like this // let message = 'Hello'; console.log(message);
copy
Tarea

Swipe to start coding

Declare a variable named numberOfStudents and assign the value 100 and display it on the console.

Solución

let numberOfStudents = 100;
console.log(numberOfStudents);

¿Todo estuvo claro?

¿Cómo podemos mejorarlo?

¡Gracias por tus comentarios!

Sección 3. Capítulo 1

Pregunte a AI

expand
ChatGPT

Pregunte lo que quiera o pruebe una de las preguntas sugeridas para comenzar nuestra charla

some-alt