Last active
December 7, 2016 06:50
-
-
Save candh/6f1cafdfe2b68154b5a5442e85f6eb7e to your computer and use it in GitHub Desktop.
Basically replaces "h"s with "H"s. In honor of ScHoolboy Q's new album.
This file contains 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
var vrse = "schoolboy" // insert verse here | |
var res = vrse.replace(/h/gi, "H"); | |
console.log(res) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment