a::documents MORE
CLOSE

JavaScript, often abbreviated as JS, is a programming language that conforms to the ECMAScript specification. JavaScript is high-level, often just-in-time compiled, and multi-paradigm. It has curly-bracket syntax, dynamic typing, prototype-based object-orientation, and first-class functions. (Source: wikipedia)


MORE INFORMATION

HOW TO OPEN THIS FILE?

.js

var x = "Text";
alert(x);

function myFunction(f) {
    return 7 + f;
}

document.getElementById("text").innerHTML = myFunction(63);

//This is a comment
            

CLICK TO COPY TO CLICKBOARD