Skip to content

Instantly share code, notes, and snippets.

@aaayushsingh
Created July 24, 2017 09:11
Show Gist options
  • Save aaayushsingh/d1088719c90cdbb70866a6269612198b to your computer and use it in GitHub Desktop.
Save aaayushsingh/d1088719c90cdbb70866a6269612198b to your computer and use it in GitHub Desktop.
Gets hexor for the array, init array dynamically when using. {N}, Helfis
var arr = [03,01,00,170,25,01];
var dem = 00;
arr.forEach(function(e) {
dem ^= e;
}, this);
console.log("answer:" + dem.toString(16));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment