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

Conteúdo do Curso

Introduction to JavaScript (staging)

Introduction to JavaScript (staging)

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

Strings 1/5

What are Strings

A primitive data type is used to deal with textual data. String, in programming, is one of the data types and it can be used to store all those types of information that we usually write in plain English. For example address of a place is written in plain English, email address, name of a person, etc.
A string is a sequence of characters and a character is simply a symbol. For example, the English language has 26 characters (a to z).

Backticks in JavaScript

Practically single quotes and double quotes are the same as we learned earlier. But backticks are more versatile and they gave us the ability to embed the expression within the strings by using${…}. Expression is the code snippet that returns some value.

1
console.log(`1 + 2 = ${1+2}`);
copy

As you can see in the above code, the backticks have been used along with the ${} to evaluate an expression.

Another advantage of backticks is that we can span our strings across multiple lines naturally.

12345
let guestList = `Guests: * John * * Pete * * Mary *`; console.log(guestList);
copy

Tarefa

A string variable named multiplication with the assigned value of 6 * 2 has been given to you. Your task is to change the declaration of the above variable with backticks and the ${} to evaluate the expression in such a way that the output should look like this. 6*2 = 12

Tarefa

A string variable named multiplication with the assigned value of 6 * 2 has been given to you. Your task is to change the declaration of the above variable with backticks and the ${} to evaluate the expression in such a way that the output should look like this. 6*2 = 12

Mude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo

Tudo estava claro?

Seção 3. Capítulo 19
toggle bottom row

Strings 1/5

What are Strings

A primitive data type is used to deal with textual data. String, in programming, is one of the data types and it can be used to store all those types of information that we usually write in plain English. For example address of a place is written in plain English, email address, name of a person, etc.
A string is a sequence of characters and a character is simply a symbol. For example, the English language has 26 characters (a to z).

Backticks in JavaScript

Practically single quotes and double quotes are the same as we learned earlier. But backticks are more versatile and they gave us the ability to embed the expression within the strings by using${…}. Expression is the code snippet that returns some value.

1
console.log(`1 + 2 = ${1+2}`);
copy

As you can see in the above code, the backticks have been used along with the ${} to evaluate an expression.

Another advantage of backticks is that we can span our strings across multiple lines naturally.

12345
let guestList = `Guests: * John * * Pete * * Mary *`; console.log(guestList);
copy

Tarefa

A string variable named multiplication with the assigned value of 6 * 2 has been given to you. Your task is to change the declaration of the above variable with backticks and the ${} to evaluate the expression in such a way that the output should look like this. 6*2 = 12

Tarefa

A string variable named multiplication with the assigned value of 6 * 2 has been given to you. Your task is to change the declaration of the above variable with backticks and the ${} to evaluate the expression in such a way that the output should look like this. 6*2 = 12

Mude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo

Tudo estava claro?

Seção 3. Capítulo 19
toggle bottom row

Strings 1/5

What are Strings

A primitive data type is used to deal with textual data. String, in programming, is one of the data types and it can be used to store all those types of information that we usually write in plain English. For example address of a place is written in plain English, email address, name of a person, etc.
A string is a sequence of characters and a character is simply a symbol. For example, the English language has 26 characters (a to z).

Backticks in JavaScript

Practically single quotes and double quotes are the same as we learned earlier. But backticks are more versatile and they gave us the ability to embed the expression within the strings by using${…}. Expression is the code snippet that returns some value.

1
console.log(`1 + 2 = ${1+2}`);
copy

As you can see in the above code, the backticks have been used along with the ${} to evaluate an expression.

Another advantage of backticks is that we can span our strings across multiple lines naturally.

12345
let guestList = `Guests: * John * * Pete * * Mary *`; console.log(guestList);
copy

Tarefa

A string variable named multiplication with the assigned value of 6 * 2 has been given to you. Your task is to change the declaration of the above variable with backticks and the ${} to evaluate the expression in such a way that the output should look like this. 6*2 = 12

Tarefa

A string variable named multiplication with the assigned value of 6 * 2 has been given to you. Your task is to change the declaration of the above variable with backticks and the ${} to evaluate the expression in such a way that the output should look like this. 6*2 = 12

Mude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo

Tudo estava claro?

What are Strings

A primitive data type is used to deal with textual data. String, in programming, is one of the data types and it can be used to store all those types of information that we usually write in plain English. For example address of a place is written in plain English, email address, name of a person, etc.
A string is a sequence of characters and a character is simply a symbol. For example, the English language has 26 characters (a to z).

Backticks in JavaScript

Practically single quotes and double quotes are the same as we learned earlier. But backticks are more versatile and they gave us the ability to embed the expression within the strings by using${…}. Expression is the code snippet that returns some value.

1
console.log(`1 + 2 = ${1+2}`);
copy

As you can see in the above code, the backticks have been used along with the ${} to evaluate an expression.

Another advantage of backticks is that we can span our strings across multiple lines naturally.

12345
let guestList = `Guests: * John * * Pete * * Mary *`; console.log(guestList);
copy

Tarefa

A string variable named multiplication with the assigned value of 6 * 2 has been given to you. Your task is to change the declaration of the above variable with backticks and the ${} to evaluate the expression in such a way that the output should look like this. 6*2 = 12

Mude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Seção 3. Capítulo 19
Mude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
We're sorry to hear that something went wrong. What happened?
some-alt