ThinkChat🤖让你学习和工作更高效,注册即送10W Token,即刻开启你的AI之旅 广告
# Learn web/browser API's The BOM and the DOM are not the only browser API's that are made available on the web platform inside of browsers. Everything that is not specifically the DOM or BOM, but an interface for programming the browser could be considered a web or browser API (tragically in the past some of these API's have been called HTML5 api's which confuses their own specifics/standardize with the actual HTML5 specification specify the HTML5 markup language). Note that web or browser API's do include device API's (e.g. [`Navigator.getBattery()`](https://developer.mozilla.org/en-US/docs/Web/API/Navigator/getBattery)) that are available through the browser on tablet and phones devices. ![](https://box.kancloud.cn/2015-10-19_56245610a36c0.png "http://www.evolutionoftheweb.com/") image source: [http://www.evolutionoftheweb.com/](http://www.evolutionoftheweb.com/) You should be aware of and learn, where appropriate, web/browser API's. A good tool to use to familiarize oneself with all of these API's would be to investigate the [HTML5test.com results for the 5 most current browsers](https://html5test.com/compare/browser/chrome-44/firefox-40/ie-11/safari-9.0.html). ##### Learn: - [DIVE INTO HTML5](http://diveintohtml5.info/) [read] - [Pro HTML5 Programming](http://apress.jensimmons.com/v5/pro-html5-programming/info.html) [read] ##### Learn Audio: - [HTML5 Canvas](http://chimera.labs.oreilly.com/books/1234000001654/index.html) [read] - [Fun With Web Audio](https://code.tutsplus.com/courses/fun-with-web-audio/) [watch] - [Add Sound to Your Site With Web Audio](https://code.tutsplus.com/courses/add-sound-to-your-site-with-web-audio) [watch] ##### Learn Canvas: - [Web Audio API](http://chimera.labs.oreilly.com/books/1234000001552/index.html) [read] Additionally, MDN has a great deal of information about web/browser APIs. - [MDN Web API reference](https://developer.mozilla.org/en-US/docs/Web/Reference/API) - [MDN WebAPI - lists device access APIs and other APIs useful for applications.](https://developer.mozilla.org/en-US/docs/WebAPI) - [MDN Web APIs interface reference - all interfaces, arranged alphabetically.](https://developer.mozilla.org/en-US/docs/Web/API) Keep in mind that not every API is specified by the W3C or WHATWG. In addition to MDN, you might find the following resources helpful: - [HTML5-overview](https://github.com/dret/HTML5-overview) - [platform.html5.org](https://platform.html5.org/) - [The HTML 5 JavaScript API Index](http://html5index.org/)