Skip to content

Instantly share code, notes, and snippets.

@iainfreestone
Created May 25, 2020 21:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iainfreestone/1d78a689fdb69bbdcb12d09f0f5dfb5e to your computer and use it in GitHub Desktop.
Save iainfreestone/1d78a689fdb69bbdcb12d09f0f5dfb5e to your computer and use it in GitHub Desktop.
String Substitution
users.map(user =>
console.log(
"User %s %s is %d years old.",
user.firstname,
user.lastname,
user.age
)
);
// User Joe Bloggs is 45 years old.
// User Jane Doe is 34 years old.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment