Removes all spaces from a string in javascript.
function remove_spaces(s){ // removes spaces from a string // by: Cody Kochmann return(s.split(" ").join("")); }