Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's low level Javascript?

Tags:

javascript

I've seen the term "Low level Javascript" come up a few times but I've no idea what it means. Google shows no results surprisingly. Can someone shed some light on it?

like image 347
Ben Shelock Avatar asked Feb 20 '10 21:02

Ben Shelock


People also ask

Can you write low level code in JavaScript?

There's nothing "low level" about Javascript. It's interpreted at run-time inside an environment of high-level abstractions, like the DOM.

What is high-level JavaScript?

JavaScript is a high-level, often just-in-time compiled language that conforms to the ECMAScript standard. It has dynamic typing, prototype-based object-orientation, and first-class functions. It is multi-paradigm, supporting event-driven, functional, and imperative programming styles.

What is low level function?

The low level functions are the functions in your program which don't call any other functions that you have written (but use the operating system or framework to compute their results etc).

What's a top-level function?

These are functions that exist outside of any class, object, or interface and are defined directly inside a file. The name top-level comes from the fact that functions are not nested inside any structure and so they are at the top of the hierarchy of classes and functions.


Video Answer


1 Answers

As of 2012, someone saying "low level JavaScript" could be refering to LLJS. It's a subset of JavaScript that compiles to a JavaScript code that is garbage collector friendly but unreadable (making heavy usage of WebGL typed arrays to manage memory).

like image 153
Quentin Pradet Avatar answered Oct 16 '22 03:10

Quentin Pradet