Last active
December 20, 2015 07:29
-
-
Save skyzyx/6094170 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// YouTube's GeekWeek code challenge | |
"53 65 61 72 63 68 20 59 6f 75 54 75 62 65 20 66 6f 72 20 2f 20 67 65 65 6b 77 65 65 6b" | |
.split(' ') | |
.map(function(v) { | |
return String.fromCharCode(parseInt(v, 16)) | |
}) | |
.join(''); | |
//=> "Search YouTube for / geekweek" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
"Be sure to drink your Ovaltine"