“Format String JavaScript” Kod odpowiedzi

Instrukcja printf w JavaScript

let soMany = 10;
console.log(`This is ${soMany} times easier!`);
// "This is 10 times easier!
Hilarious Hare

f String JavaScript

`string text ${expression} string text`
Nervous Nightingale

Format ciągu JavaScript

//

const firstName = 'john';
const lastName = 'smith';

const output = `name: ${firstName}, surname: ${lastName}`;
// name: john, surname: smith
Beautiful Bear

String String JavaScript

const string = 'This is a string.';
const message = `${string} This is also a string.`;
elyiscool

Format ciągu JavaScript

let name = "John";
let age = 30;
let food = "pizza";

// String formating using backticks
let sentence = `${name} is ${age} years old and likes ${food}`;

console.log(sentence);
// John is 30 years old and likes pizza

// String formating using plus operator
let sentence = name + ' is ' + age + ' years old and likes ' + food;

console.log(sentence); // John is 30 years old and likes pizza
Clumsy Caiman

Format String JavaScript

const firstString = '2 + 2'; // Creates a string literal value
const secondString = new String('2 + 2'); // Creates a String object
eval(firstString); // Returns the number 4
eval(secondString); // Returns a String object containing "2 + 2"
Relieved Raccoon

Odpowiedzi podobne do “Format String JavaScript”

Pytania podobne do “Format String JavaScript”

Więcej pokrewnych odpowiedzi na “Format String JavaScript” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu