Skip to content Skip to sidebar Skip to footer

BASIC.js For ToUpperCase

I'm going to go old school on JavaScript and write a BASIC.js that contains functions like: function UCASE(obj) { return obj.toUpperCase(); } function LCASE(obj) { return obj.to

Solution 1:

Don't know that anyone has done that exactly -- honestly not sure of the utility, but hey, if it's fun for you, why not?

However, there are a number of javascript-based BASIC interpreters:

NGBasic

Quite BASIC

Applesoft BASIC interpreter


Solution 2:


Post a Comment for "BASIC.js For ToUpperCase"