Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lära Variables Naming Convention | JavaScript syntax
Introduction to JavaScript

Svep för att visa menyn

book
Variables Naming Convention

Variables naming convention:

  1. Variables in JavaScript are case-sensitive. Case-sensitive means variables are treated differently depending on whether it is in capitals or lower-case text.

12345
let name="Bob William"; console.log(name); let NAME ="Jacob Thomas"; console.log(NAME);
copy

We will get two different outputs because the name and NAME are two different variables.

Uppgift

Swipe to start coding

Suppose there are 50 students in a class and you want to store this in a variable, and for that you need a variable name to store this information. Your task is to choose the suitable identifier for your variable name from these numberOfStudents, student, and std and print the value on the console.

Lösning

Switch to desktopByt till skrivbordet för praktisk övningFortsätt där du är med ett av alternativen nedan
Var allt tydligt?

Hur kan vi förbättra det?

Tack för dina kommentarer!

Avsnitt 2. Kapitel 8
single

single

Fråga AI

expand

Fråga AI

ChatGPT

Fråga vad du vill eller prova någon av de föreslagna frågorna för att starta vårt samtal

close

Awesome!

Completion rate improved to 2

book
Variables Naming Convention

Variables naming convention:

  1. Variables in JavaScript are case-sensitive. Case-sensitive means variables are treated differently depending on whether it is in capitals or lower-case text.

12345
let name="Bob William"; console.log(name); let NAME ="Jacob Thomas"; console.log(NAME);
copy

We will get two different outputs because the name and NAME are two different variables.

Uppgift

Swipe to start coding

Suppose there are 50 students in a class and you want to store this in a variable, and for that you need a variable name to store this information. Your task is to choose the suitable identifier for your variable name from these numberOfStudents, student, and std and print the value on the console.

Lösning

Switch to desktopByt till skrivbordet för praktisk övningFortsätt där du är med ett av alternativen nedan
Var allt tydligt?

Hur kan vi förbättra det?

Tack för dina kommentarer!

close

Awesome!

Completion rate improved to 2

Svep för att visa menyn

some-alt