“plantilla sintaxis literal” Código de respuesta

Cadena JavaScript literal

`string text`

`string text line 1
 string text line 2`

`string text ${expression} string text`

tag`string text ${expression} string text`
Happy Heron

Plantilla literales en JavaScript

// Template Literals in javascript
// Longhand:
let firstName = "Chetan", lastName = "Nada";
const welcome = 'Hello my name is ' + firstName + ' ' + lastName;
console.log(welcome); //Hello my name is Chetan Nada

// Shorthand:
const welcome_ = `Hello my name is ${firstName} ${lastName}`;
console.log(welcome_); //Hello my name is Chetan Nada
Chetan Nada

Literales de plantilla de JavaScript

//Must use backticks, `, in order to work.

let a = 5;
let b = 10;
console.log(`Fifteen is ${a + b} and
not ${2 * a + b}.`);

//Output:
//Fifteen is 15 and not 20.
Blue-eyed Bee

plantilla sintaxis literal

`half of 100 is ${100 / 2}`
Crazy Cobra

Plantilla literales

let fourthItem = 'Item 4';
let myHtml = `
  <ol class="item-list">
    <li>Item 1</li>
    <li>Item 2</li>
    <li>Item 3</li>
    <li>${fourthItem}</li>
  </ol>
`;
Gorgeous Goldfinch

Respuestas similares a “plantilla sintaxis literal”

Preguntas similares a “plantilla sintaxis literal”

Más respuestas relacionadas con “plantilla sintaxis literal” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código