bookmate game
Books
Stoyan Stefanov

Object-Oriented JavaScript

  • Kirill Sandryhailohas quoted3 years ago
    Tip

    Tips and tricks
  • Dragica Korlathas quoted3 years ago
    Functions allow you group together some code, give this code a name, and reuse it later, addressing it by name.
  • Dragica Korlathas quoted3 years ago
    Single line comments—start with // and end at the end of the line
    Multi-line comments—start with /* and end with */ on the same line or any subsequent line. Note that any code in between the comment start and the comment end will be ignored.
  • Dragica Korlathas quoted3 years ago
    ! has the highest precedence and is executed first, assuming there are no parentheses that demand otherwise. Then, in the order of precedence, comes && and finally ||
  • Dragica Korlathas quoted3 years ago
    !—logical NOT (negation)
    &&—logical AND
    ||—logical OR
  • Dragica Korlathas quoted3 years ago
    There are some additional characters which are rarely used: \b (backspace), \v (vertical tab), and \f (form feed).
  • Dragica Korlathas quoted3 years ago
    A string is a sequence of characters used to represent text.
  • Dragica Korlathas quoted3 years ago
    NaN is a special value that is also a number.
  • Dragica Korlathas quoted3 years ago
    When you sum infinity and minus infinity, you don't get 0, but something that is called NaN (Not A Number).
  • Dragica Korlathas quoted3 years ago
    the biggest number JavaScript can handle is 1.7976931348623157e+308 while the smallest is 5e-324.
fb2epub
Drag & drop your files (not more than 5 at once)