Skip to content

Instantly share code, notes, and snippets.

@victorvhpg
Created November 6, 2016 21:20
Show Gist options
  • Save victorvhpg/514823bc496b1f2f9cf366175768cde6 to your computer and use it in GitHub Desktop.
Save victorvhpg/514823bc496b1f2f9cf366175768cde6 to your computer and use it in GitHub Desktop.
substituicao.js
var variavel = "oi teste"
var teste = `
texto ${variavel}
texto
texto
`;
var teste2 = `texto ${teste} fim`;
console.log(teste2);
/*
exibe:
"texto
texto oi teste
texto
texto
fim"
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment