Skip to content

Instantly share code, notes, and snippets.

@stanleykerr
Created September 16, 2018 21:00
Show Gist options
  • Select an option

  • Save stanleykerr/d5919276d9caef8f50f55698b8955322 to your computer and use it in GitHub Desktop.

Select an option

Save stanleykerr/d5919276d9caef8f50f55698b8955322 to your computer and use it in GitHub Desktop.
Assignment 2: Binary stuff
String.prototype.swap = function() { return this.replace(/0/g, 'x').replace(/1/g, '0').replace(/x/g, '1'); };
Usage: "00110011".swap(); // Returns output 11001100
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment