﻿// remove spaces from specified string
function removeSpacesAndDashes(string) {
    // return specified string without any spaces
    return string.replace(' ', '').replace('-', '');
}

