JavaScript Exercises Basic#9 - A to #
Write a program which replaces all 'A's in the letter with '#' when given an uppercase letter as an argument.
Result
Solution1
function solution(str){
let answer = "";
for(let x of str){
if(x === 'A')...
reyjang.hashnode.dev1 min read