Skip to content

Instantly share code, notes, and snippets.

@ziazon
Created February 8, 2013 10:23
Show Gist options
  • Save ziazon/4737948 to your computer and use it in GitHub Desktop.
Save ziazon/4737948 to your computer and use it in GitHub Desktop.
This function will mask any string up to the last four characters. Useful for credit card numbers, hence the function name.
function maskCreditCard(str){
return Array(str.slice(0,-3).length).join('*')+str.slice(-4);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment