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

Sveip for å vise menyen

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.

Oppgave

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 desktopBytt til skrivebordet for virkelighetspraksisFortsett der du er med et av alternativene nedenfor
Alt var klart?

Hvordan kan vi forbedre det?

Takk for tilbakemeldingene dine!

Seksjon 2. Kapittel 8
Vi beklager at noe gikk galt. Hva skjedde?

Spør AI

expand
ChatGPT

Spør om hva du vil, eller prøv ett av de foreslåtte spørsmålene for å starte chatten vår

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.

Oppgave

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 desktopBytt til skrivebordet for virkelighetspraksisFortsett der du er med et av alternativene nedenfor
Alt var klart?

Hvordan kan vi forbedre det?

Takk for tilbakemeldingene dine!

Seksjon 2. Kapittel 8
Switch to desktopBytt til skrivebordet for virkelighetspraksisFortsett der du er med et av alternativene nedenfor
Vi beklager at noe gikk galt. Hva skjedde?
some-alt