JSFiddle - React, Tailwind, and code Playground

by louis0420

JavaScript

function decryptPassword(s) {
    // Write your code here
    for(let i = 0 ; i < s.length ; i ++){
        let curChat  = s[i]
        console.log(curChat)
    }
    return s
}

console.log(decryptPassword("51Pa*0Lp*0e"))