Last active
June 19, 2023 19:11
-
-
Save erhanyasar/af331b7c8bae551ee5029e2259751abc to your computer and use it in GitHub Desktop.
This file contains 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
const dataArr = [ | |
"B$u$i$ld", | |
"$t$$h$e", | |
"N$e$x$t", | |
"E$$ra", | |
"$$o$f$", | |
"S$$of$t$wa$r$e", | |
"De$$ve$l$op$me$n$t", | |
]; | |
console.log(dataArr.map((element) => element.replaceAll("$", "").toUpperCase()).join(" ")); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment