RosettaCodeData/Task/Enumerations/JavaScript/enumerations.js

8 lines
98 B
JavaScript
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
// enum fruits { apple, banana, cherry }
var f = "apple";
if(f == "apple"){
f = "banana";
}