RosettaCodeData/Task/Enumerations/JavaScript/enumerations.js

8 lines
98 B
JavaScript
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
// enum fruits { apple, banana, cherry }
var f = "apple";
if(f == "apple"){
f = "banana";
}