“f string javascript” Código de respuesta

f string javascript

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

String Interpolation JavaScript

const age = 3
console.log(`I'm ${age} years old!`)
Drab Dogfish

f string javascript

const number = 123;
// ` ${somethign} `
`Here you can put any variable ${number} or expression ${number > 100 ? "big" : "small"}`
Cautious Crayfish

formato de cadena de JavaScript

//

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

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

Respuestas similares a “f string javascript”

Preguntas similares a “f string javascript”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código