6 Matching Annotations
  1. Feb 2021
    1. We can use required tag for html, for a simple check.

    1. The transform property allows you to visually manipulate an element by skewing, rotating, translating, or scaling: .element { width: 20px; height: 20px; transform: scale(20); } Even with a declared height and width, this element will now be scaled to twenty times its original size:

      For css codes, we can use transform: scale(20).

    1. The read-only sessionStorage property accesses a session Storage object for the current origin. sessionStorage is similar to localStorage; the difference is that while data in localStorage doesn't expire, data in sessionStorage is cleared when the page session ends.

      sessionStorage is cleared when the page session ends. On the other hand, localStorage doesn't expire

    1. let animal = { eats: true }; let rabbit = { jumps: true }; rabbit.__proto__ = animal; // sets rabbit.[[Prototype]] = animal

      Inheritance & prototyping

  2. Apr 2020
    1. The Web of Things is applicable to multiple IoT domains, including Smart Home, Industrial, Smart City, Retail, and Health applications, where usage of the W3C WoT standards can simplify the development of IoT systems that combine devices from multiple vendors and ecosystems. Please read more in our Press Release.

      lets annotate