Conteúdo do Curso
Introduction to JavaScript (staging)
Introduction to JavaScript (staging)
Naming Convention in JavaScript. Case Styles
What is meant by naming convention?
Naming conventions propose logic when it comes to naming identifiers. No one imposes these naming conventions as rules, however, they are generally considered in the JavaScript community.
Different Case Styles:
Case explains that how characters are formatted within a word or phrase.
Following the cases that are usually used in Javascript:
- UPPERCASE: In the upper case all the letters are capital, for example,
HOURS
andPI
. Constants are usually written in upper-case. - lowercase: In lower case all the letters are small, for example,
name
andage
. Variable names having only one word are usually written in lower-case. - camelCase: Writing phrases such that each word or abbreviation in the middle of the phrase begins with a capital letter, for example,
variableA
andstudentsCount
. Functions are usually written in camelCase notation. - PascalCase: Writing phrases such that each word in the phrase begins with a capital letter, for example,
HumanBeing
andStudentsCount
. Classes are usually written in PascalCase
//lowercase let name = 'bob william'; console.log(name); //uppercase let NAME = 'PAUL ANTHONY'; console.log(NAME); //camelcase let fullPrice = 1000; console.log(fullPrice); //pascal notation let SoftwareDeveloper = true; console.log(SoftwareDeveloper);
Tarefa
Your task is to declare a variable with the name numberofplanets
but in camelCase. Store the number 8
in that variable. Then show the value on the console.
Obrigado pelo seu feedback!
Naming Convention in JavaScript. Case Styles
What is meant by naming convention?
Naming conventions propose logic when it comes to naming identifiers. No one imposes these naming conventions as rules, however, they are generally considered in the JavaScript community.
Different Case Styles:
Case explains that how characters are formatted within a word or phrase.
Following the cases that are usually used in Javascript:
- UPPERCASE: In the upper case all the letters are capital, for example,
HOURS
andPI
. Constants are usually written in upper-case. - lowercase: In lower case all the letters are small, for example,
name
andage
. Variable names having only one word are usually written in lower-case. - camelCase: Writing phrases such that each word or abbreviation in the middle of the phrase begins with a capital letter, for example,
variableA
andstudentsCount
. Functions are usually written in camelCase notation. - PascalCase: Writing phrases such that each word in the phrase begins with a capital letter, for example,
HumanBeing
andStudentsCount
. Classes are usually written in PascalCase
//lowercase let name = 'bob william'; console.log(name); //uppercase let NAME = 'PAUL ANTHONY'; console.log(NAME); //camelcase let fullPrice = 1000; console.log(fullPrice); //pascal notation let SoftwareDeveloper = true; console.log(SoftwareDeveloper);
Tarefa
Your task is to declare a variable with the name numberofplanets
but in camelCase. Store the number 8
in that variable. Then show the value on the console.
Obrigado pelo seu feedback!
Naming Convention in JavaScript. Case Styles
What is meant by naming convention?
Naming conventions propose logic when it comes to naming identifiers. No one imposes these naming conventions as rules, however, they are generally considered in the JavaScript community.
Different Case Styles:
Case explains that how characters are formatted within a word or phrase.
Following the cases that are usually used in Javascript:
- UPPERCASE: In the upper case all the letters are capital, for example,
HOURS
andPI
. Constants are usually written in upper-case. - lowercase: In lower case all the letters are small, for example,
name
andage
. Variable names having only one word are usually written in lower-case. - camelCase: Writing phrases such that each word or abbreviation in the middle of the phrase begins with a capital letter, for example,
variableA
andstudentsCount
. Functions are usually written in camelCase notation. - PascalCase: Writing phrases such that each word in the phrase begins with a capital letter, for example,
HumanBeing
andStudentsCount
. Classes are usually written in PascalCase
//lowercase let name = 'bob william'; console.log(name); //uppercase let NAME = 'PAUL ANTHONY'; console.log(NAME); //camelcase let fullPrice = 1000; console.log(fullPrice); //pascal notation let SoftwareDeveloper = true; console.log(SoftwareDeveloper);
Tarefa
Your task is to declare a variable with the name numberofplanets
but in camelCase. Store the number 8
in that variable. Then show the value on the console.
Obrigado pelo seu feedback!
What is meant by naming convention?
Naming conventions propose logic when it comes to naming identifiers. No one imposes these naming conventions as rules, however, they are generally considered in the JavaScript community.
Different Case Styles:
Case explains that how characters are formatted within a word or phrase.
Following the cases that are usually used in Javascript:
- UPPERCASE: In the upper case all the letters are capital, for example,
HOURS
andPI
. Constants are usually written in upper-case. - lowercase: In lower case all the letters are small, for example,
name
andage
. Variable names having only one word are usually written in lower-case. - camelCase: Writing phrases such that each word or abbreviation in the middle of the phrase begins with a capital letter, for example,
variableA
andstudentsCount
. Functions are usually written in camelCase notation. - PascalCase: Writing phrases such that each word in the phrase begins with a capital letter, for example,
HumanBeing
andStudentsCount
. Classes are usually written in PascalCase
//lowercase let name = 'bob william'; console.log(name); //uppercase let NAME = 'PAUL ANTHONY'; console.log(NAME); //camelcase let fullPrice = 1000; console.log(fullPrice); //pascal notation let SoftwareDeveloper = true; console.log(SoftwareDeveloper);
Tarefa
Your task is to declare a variable with the name numberofplanets
but in camelCase. Store the number 8
in that variable. Then show the value on the console.