Skip to content

Instantly share code, notes, and snippets.

@MSakamaki
Last active August 29, 2015 14:25
Show Gist options
  • Save MSakamaki/b1a65ad6ecffcf0e9755 to your computer and use it in GitHub Desktop.
Save MSakamaki/b1a65ad6ecffcf0e9755 to your computer and use it in GitHub Desktop.
javascript code snippet
var rgx = /^(25[0-4]|2[0-4][0-9]|[01][0-9][0-9]|[0-9][0-9]|[1-9])$/
Array.apply(null, {length: 256})
.map(Number.call, Number)
.forEach(function(v){
if (!rgx.test(v)) console.log(v)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment