You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Step 1: Declare an empty string, say reverse = ''
// Step 2: Run a loop from 0 to length of string
// Step 3: For each letter of original string, concatenate reverse with it. (concatenate each element of string with reverse string, such that element gets concatenated before the current reverse string)
// Using basic string concatenation
function strRev (str) {
// Initialize an empty string "Reverse"
let reverse = '';
for (i=0; i<str.length; i++) {
// for each letter of original string, concatenate reverse with it