Skip to content

Instantly share code, notes, and snippets.

@toruta39
Last active October 7, 2015 04:57
Show Gist options
  • Save toruta39/3108810 to your computer and use it in GitHub Desktop.
Save toruta39/3108810 to your computer and use it in GitHub Desktop.
Quick conversions of value types
var bool = !!arg;
var str = arg + "";
var num = arg * 1;
var arr = Array.prototype.slice.call(arg, 0);
//Str <=> Arr
var arr = arg.split("");
var str = arg.join("");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment