aboutsummaryrefslogtreecommitdiff
path: root/challenge-001/zapwai/javascript/ch-1.js
blob: 0ab10904efafe10dd82ac04a6fb7257e586d9845 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
let str = "Perl Weekly Challenge!";
let cnt = 0;
let newstr = "";
for (let c of str) {
    if (c == "e") {
	c = "E";
	cnt++;
    }
    document.write(c);
    newstr += c;
}
console.log(newstr);
document.write("\n<br>There were ", cnt, " e's in the sentence.");
console.log("\nThere were ", cnt, " e's in the sentence.");