Skip to content

Commit fc79c57

Browse files
problem 28 solved
1 parent 3c2e104 commit fc79c57

File tree

1 file changed

+38
-1
lines changed

1 file changed

+38
-1
lines changed

problem28/problem28.js

+38-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,39 @@
11
/* You are in a hurry to go to your school on time. But when you are crossing the road, the traffic signal is red coloured.
2-
In this situation, if you try to cross the road, you may be in danger.If you notice a yellow coloured traffic signal, you should stop. If you notice a green coloured traffic signal, you should cross the road. So write a JS code, where there is a variable called signal. Its value can be green, yellow or red & we will get different activities as output depending on the variable. So, hurry up */
2+
In this situation, if you try to cross the road, you may be in danger.
3+
If you notice a yellow coloured traffic signal, you should stop.
4+
If you notice a green coloured traffic signal, you should cross the road.
5+
So write a JS code, where there is a variable called signal.
6+
Its value can be green, yellow or red & we will get different activities as output depending on the variable. So, hurry up */
7+
8+
9+
// Solving the problem with if else conditions
10+
11+
var signal = "yellow";
12+
13+
if( signal == "red"){
14+
console.log("💀⚡💀Don't move it's Dangerous!! Please wait for Green.");
15+
}
16+
17+
else if ( signal == "yellow"){
18+
console.log("⚠️⚠️ Don't Crass the road it's not safe!! Wait for Green.");
19+
}
20+
21+
else{
22+
console.log("🟢🟢Now it's safe . You can go now.");
23+
}
24+
25+
// Solving the problem with switch
26+
27+
switch(signal){
28+
case "red":
29+
console.log("💀⚡💀Don't move it's Dangerous!! Please wait for Green.");
30+
break;
31+
case "yellow":
32+
console.log("⚠️⚠️ Don't Crass the road it's not safe!! Wait for Green.");
33+
break;
34+
default :
35+
console.log("🟢🟢Now it's safe . You can go now.");
36+
37+
};
38+
39+

0 commit comments

Comments
 (0)