About 1,900,000 results
Open links in new tab
  1. Blob - Web APIs | MDN - MDN Web Docs

    Nov 7, 2025 · Blobs can represent data that isn't necessarily in a JavaScript-native format. The File interface is based on Blob, inheriting blob functionality and expanding it to support files on …

  2. Blob.io - Free Multiplayer io games

    This is a multiplayer online action game. You start the game as a tiny bacteria (Blob) in a petri dish. You must try to survive by avoiding attacks by bigger players. Simultaneously, you eat …

  3. What is a Blob Object in JavaScript ? - GeeksforGeeks

    Jul 23, 2025 · In JavaScript, a Blob (Binary Large Object) is an object that represents raw binary data (collection of bytes). It is commonly used to handle and manipulate binary data, such as …

  4. Understanding what a Blob is - DEV Community

    May 8, 2021 · In JavaScript Definitive Guide, 7th ed, p. 522, it is said that the file may actually be saved on user's local hard drive, and the JavaScript can still access the Blob.

  5. Blob JavaScript API

    Blobs allow you to construct file like objects on the client that you can pass to apis that expect urls instead of requiring the server provides the file.

  6. Blob - Web APIs | MDN - devdoc.net

    Jul 27, 2017 · Blobs represent data that isn't necessarily in a JavaScript-native format. The File interface is based on Blob, inheriting blob functionality and expanding it to support files on the …

  7. Blob - The Modern JavaScript Tutorial

    May 16, 2022 · We can make a Blob from a typed array using new Blob(...) constructor. We can get back ArrayBuffer from a Blob using blob.arrayBuffer(), and then create a view over it for …

  8. Blob: Blob () constructor - Web APIs | MDN - MDN Web Docs

    Jun 23, 2025 · The Blob () constructor returns a new Blob object. The content of the blob consists of the concatenation of the values given in the parameter blobParts.

  9. blob: URLs - URIs | MDN

    Sep 11, 2025 · Blob (or object) URLs, URLs prefixed with the blob: scheme, enable integration of Blobs and MediaSources with other APIs that are only designed to be used with URLs, such …

  10. MDN Web Docs

    To create a blob that contains a subset of another blob's data, use the <a href=\"/en-US/docs/Web/API/Blob/slice\" title=\"slice()\"><code>slice()</code></a> method.