<<<<<<< HEAD Code Wars - Brett Crafton

Remove String Spaces

Question

Simple, remove the spaces from the string, then return the resultant string.

No examples

Solution by -

My Solution


	function noSpace(x){
		return [...x].filter(y => y != ' ').join('')
		}
				

Try it yourself - CodeWars

======= Code Wars - Brett Crafton

Remove String Spaces

Question

Simple, remove the spaces from the string, then return the resultant string.

No examples

Solution by -

My Solution


	function noSpace(x){
		return [...x].filter(y => y != ' ').join('')
		}
				

Try it yourself - CodeWars

>>>>>>> 0e614172debaa009c8d31330edbeb3b765b59c39