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

Reversed Strings

Question

Complete the solution so that it reverses the string passed into it.

'world' => 'dlrow' 'word' => 'drow'

Solution by -

My Solution


	function solution(str){
		return str.split('').reverse().join('')
		}
				

Try it yourself - CodeWars

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

Reversed Strings

Question

Complete the solution so that it reverses the string passed into it.

'world' => 'dlrow' 'word' => 'drow'

Solution by -

My Solution


	function solution(str){
		return str.split('').reverse().join('')
		}
				

Try it yourself - CodeWars

>>>>>>> 0e614172debaa009c8d31330edbeb3b765b59c39