Skip to content

Instantly share code, notes, and snippets.

@RahmatSaeedi
Created May 10, 2021 14:30
Show Gist options
  • Save RahmatSaeedi/ba1af7e33a21f9964cba7469b22f54fa to your computer and use it in GitHub Desktop.
Save RahmatSaeedi/ba1af7e33a21f9964cba7469b22f54fa to your computer and use it in GitHub Desktop.
CodeSignal - Arcade - Intro - JS - Array Replace
function arrayReplace(inputArray, elemToReplace, substitutionElem) {
return inputArray.map(i => i==elemToReplace? substitutionElem:i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment