RosettaCodeData/Task/Conditional-structures/JavaScript/conditional-structures-1.js

8 lines
106 B
JavaScript
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
if( s == "Hello World" ) {
foo();
} else if( s == "Bye World" ) {
bar();
} else {
deusEx();
}