Created
November 6, 2016 21:20
-
-
Save victorvhpg/514823bc496b1f2f9cf366175768cde6 to your computer and use it in GitHub Desktop.
substituicao.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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