Aep Saepudin
Aep Saepudin

Reputation: 172

Where can I find list of the window API?

I am reading this article about "Reading files in JavaScript using the File APIs", in the middle of article when I read this code,

if (window.File && window.FileReader && window.FileList && window.Blob)

I'm curious about how many window.* is available on API? Where can I find another?

I can't find it with simple search on google.

Upvotes: 0

Views: 117

Answers (1)

salezica
salezica

Reputation: 77029

The best resource for browser Javascript is the Mozilla Developer Network (MDN) website:

https://developer.mozilla.org/en-US/docs/Web/API/Window

Next time you need to google something, add mdn to your search and enjoy high-quality documentation.

Upvotes: 2

Related Questions