A never-ending nightmare of traffic lights, brake lights, and brake pads.
Proceed to Intersection-2, where the chaos only gets worse!
function traffic_nightmare(intersection) {
var traffic_light = 0;
while (true) {
traffic_light = (traffic_light + 1) % 3;
if (traffic_light == 2) {
alert("HONK!");
}
}
}