Skip to content

Instantly share code, notes, and snippets.

@abhishekmunie
Created April 3, 2012 17:21
Show Gist options
  • Save abhishekmunie/2293851 to your computer and use it in GitHub Desktop.
Save abhishekmunie/2293851 to your computer and use it in GitHub Desktop.
Check if a string is equivalent to number or boolean, and convert it.
function checkString(str){
try{str=JSON.parse(str);}catch(e){}
return str;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment