How do you reverse a string in place (or in-place) in JavaScript when it is passed to a function with a return statement, without using built-in functions (.reverse()<
.reverse()<
//es6 //array.from const reverseString = (string) => Array.from(string).reduce((a, e) => e + a); //split const reverseString = (string) => string.split('').reduce((a, e) => e + a); //split problem "