Template Strings
A partir de ES6, JS ahora tiene template strings
Ejemplo: String normal
var firstName = 'Jake';
var lastName = 'Rawr';
console.log('My name is ' + firstName + ' ' + lastName);
// My name is Jake Rawr
Template String
var firstName = 'Jake';
var lastName = 'Rawr';
console.log(`My name is ${firstName} ${lastName}`);
// My name is Jake Rawr
Usted puede hacer strings multilínea sin \n' y lógica simple (ie 2+3) en el interior
$ {}` en template strings.
Usted también es capaz de modificar la salida de template strings utilizando una función; se les llama template strings etiquetados, por ejemplo los usos de cadenas de la plantilla etiquetados.
Tambien puede leer mas sobre Template Strings read.
MEET THE NEW JSTIPS BOOK
You no longer need 10+ years of experience to get your dream job.
Use the 100 answers in this short book to boost your confidence and skills to ace the interviews at your favorite companies like Twitter, Google and Netflix.
GET THE BOOK NOW
MEET THE NEW JSTIPS BOOK
The book to ace the JavaScript Interview.
A short book with 100 answers designed to boost your knowledge and help you ace the technical interview within a few days.
GET THE BOOK NOW