Explain what is Javascript?

devquora
devquora

Posted On: Jun 05, 2024

 

    1 Answer Written

  •  devquora
    Answered by Mathewaider

    Javascript is an object-oriented computer programming language commonly used to create interactive effects within web browsers.It is first used by the Netscape browser, that provides access to the HTML document object model (DOM), provides access to the browser object model (BOM). Javascript syntax looks a lot like java, c or c++ syntax.

    Below is the list of data types supported by Javascript:-

    • Undefined
    • Null
    • Boolean
    • String
    • Symbol
    • Number
    • Object

Related Questions

Please Login or Register to leave a response.

Related Questions

JavaScript Interview Questions

What close() does in Javascript?

In JavaScript, the close() method is employed to securely close the current window. To ensure its association with the window object rather than another JavaScript object, employ window.close(). This ..

JavaScript Interview Questions

What is the difference between let and var?

Both var and let are utilized for variable/method declaration in JavaScript. The crucial disparity lies in their scope: var is function-scoped, meaning it's accessible throughout the function it's def..

JavaScript Interview Questions

Explain Closures in JavaScript?

Closures merge lexical environment and functions, empowering JavaScript programmers to craft efficient and expressive code. They encapsulate local variables within the function's scope, enhancing code..