answersLogoWhite

0

What is the window object in javaScript?

Updated: 8/21/2019
User Avatar

Wiki User

10y ago

Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What is the window object in javaScript?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How can one use JavaScript to open a window?

JavaScript contains a function that is specifically written and designed for the purpose of opening a new window. In Javascript, this function is simply called 'open new window'. When this object is initiated, one can determine the properties of the window to be called and open a new window using JavaScript.


How do you shortcut systemoutprintln in javascript?

There is no systemout object in JavaScript. Do you mean Java?


What are properties in Javascript?

Like other object-oriented languages (JavaScript is technically not 'object-oriented'), JavaScript has objects, those objects have attributes or 'properties' which hold data


What JavaScript terms are used to describe the actions performed of an object?

JavaScript is an object-oriented language, and like most OO languages, the actions that are performed on an object are referred to as methods. In JavaScript, methods are also sometimes called functions.


What does JSON stand for?

JavaScript Object Notation.


How do you get a window to pop up only after a video finishes using JavaScript or VBscript?

If you are playing the video in Flash you can call a javascript function at the end of the video streaming through getURL. So internally the javascript function will open the pop up window.


What is the Javascript onclick?

Onclick will be called when the object you're attaching the onclick function to is clicked (usually the object is an HTML element).


How can one open the document window in Javascript?

To open a new window in javascript all you need to do is open your browser. Then you pick the document you want to open and right click on the screen. Then you choose to open in a new window or a new tab.


What does java script do?

Javascript is a programming language that is object orientated. that means that it is much better to use if you want to assign given attributes to an object. Javascript is the best for doing object orientated things.


What are the applications of object oriented language?

JavaScript Vb


Which websites have information about the JavaScript date object?

There are a lot of websites which have information about the JavaScript date object. However, it is strongly suggested that one should check out from the website W3Schools.


What is returned from a custom object constructor in javascript?

A JavaScript constructor will return an instance of the object. So var ourImg = new Image(); Gets us a new Image object. The same goes for a custom element.