-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJs Loop project.html
53 lines (48 loc) · 1.42 KB
/
Js Loop project.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Js Loop Project</title>
</head>
<body>
<script>
let input = "Hello Mr.Jorn how are You";
console.log(input);
let vowels = ["a", "e", "i", "o", "u"];
console.log(vowels);
let Arr = [];
for (let i = 0; i < input.length; i++) {
for (let j = 0; j < vowels.length; j++) {
if (input[i] === vowels[j]) {
if (input[i] === "e") {
Arr.push("ee");
} else if (input[i] === "u") {
Arr.push("uu");
} else {
Arr.push(input[i]);
}
}
}
}
console.log(Arr.join("").toUpperCase());
// let input = "Gone with the wind";
// let vowels = ['a','e', 'i',' o', 'u'];
// let resultArray = [];
// for (let i = 0; i < input.length; i++) {
// for(let j = 0; j < vowels.length; j++) {
// if(input[i] === vowels[j]) {
// if(input[i] === "e") {
// resultArray.push('ee');
// } else if(input[i] === "u"){
// resultArray.push('uu');
// } else {
// resultArray.push(input[i]);
// }
// }
// }
// }
// console.log(resultArray.join('').toUpperCase());
</script>
</body>
</html>