Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

BASIC.js for toUpperCase

Tags:

javascript

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.toLowerCase();
}

Q: Has anyone done this already?

like image 450
Phillip Senn Avatar asked Aug 23 '26 14:08

Phillip Senn


1 Answers

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

like image 129
Jacob Mattison Avatar answered Aug 26 '26 04:08

Jacob Mattison