Skip to content

Instantly share code, notes, and snippets.

@dillonkearns
Last active March 19, 2017 13:42
Show Gist options
  • Save dillonkearns/cb4086cdd06623d4f22378f2ab18f7fa to your computer and use it in GitHub Desktop.
Save dillonkearns/cb4086cdd06623d4f22378f2ab18f7fa to your computer and use it in GitHub Desktop.
function numbersToNegatives(numbersArray) {
let negativeNumbers = []
for (let i = 0; i < numbersArray.length; i++) {
negativeNumbers.push(numberToNegative(numbersArray[i]))
}
return negativeNumbers
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment