31 Matching Annotations
  1. Last 7 days
    1. recognized

      identify

    2. computational

      mathematical calculation

    3. “dynamically typed”,

      a programming language where the interpreter assigns a type to a variable based on the variable's value at runtime. Interpreter Translate the code line-by-line as the code runs.

    4. a programming language where the interpreter assigns a type to a variable based on the variable's value at runtime. Interpreter Translate the code line-by-line as the code runs.

    1. optimize

      effective

    2. minifiers

      To minify JS, CSS and HTML files, comments and extra spaces need to be removed, as well as crunch variable names so as to minimize code and reduce file size. The minified file version provides the same functionality while reducing the bandwidth of network requests.

    3. Indeed

      In reality

    4. obvious

      easily understood

    5. run-time,

      where your program will be executed

      COMPILE TIME the time window during which a language's statements are converted into binary instructions for the processor to execute.

    6. aliases

      false

    7. convention

      a way in which something is usually done.

    8. forbid

      not to allow

    9. analogy

      a comparison between one thing and another

    10. sake

      purpose

    1. relative path

      It gives the path relative to the current location (page) you're in. It does not start from the root, but from the current folder or file.

    2. absolute path

      It provides the full URL or directory path from the root of the website or server. It usually starts with http://, https://, or a / (root directory).

  2. developer.mozilla.org developer.mozilla.org
    1. letting

      rent

    2. API

      tools that allow one piece of software or script to communicate with another and share data from others.

    3. abstract

      existing in thought or as an idea but not having a physical or concrete existence.

  3. developer.mozilla.org developer.mozilla.org
    1. Creates a new Document object.

      We can not able create a new Document but we able to interact with that document.

    1. escaped string.

      In JavaScript, an escaped string is a string that contains special characters prefixed by a backslash (\) to give them a specific meaning or to represent characters that are otherwise difficult to include in a normal string.

      Example: If you want to include a quote inside a string that’s enclosed by quotes.

      Unicode characters: Sometimes, you need to include characters that are not on your keyboard (e.g., emojis, non-Latin characters) using their Unicode representation (\u).

    2. the Unicode code point

      To represent text from different languages, scripts, and symbols in a single document.