CodyKochmann
5/13/2015 - 12:14 PM

Removes all spaces from a string in javascript.

Removes all spaces from a string in javascript.

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