Ecmascript string formatting
by chalcrow
Babel + JSX
const firstname = "Chris";
const lastname = "Halcrow"
let displayString = `${firstname} ${lastname}`;
console.log(displayString);
by chalcrow
const firstname = "Chris";
const lastname = "Halcrow"
let displayString = `${firstname} ${lastname}`;
console.log(displayString);