Skip to content
DropletDrift
(The Learn Hub)
  • Home
  • JavaScript
  • HTML
  • CSS
  • AI & ML
  • More
    • Python
    • Linux
    • MySQL
    • PHP
  • Blog
    • Web Dev
    • AI
    • Hosting
    • News
  • About
  • Contact

JavaScript

JavaScript (often abbreviated as JS) is a high-level, interpreted programming language primarily used for creating interactive and dynamic content on the World Wide Web. It is one of the core technologies of web development, alongside HTML and CSS, enabling client-side scripting to manipulate web page content, respond to user actions, and communicate with servers. JavaScript is a multi-paradigm language, supporting object-oriented, imperative, and functional programming styles.

Table of Contents

  • #Date Object
  • #Numbers

# Date Object

  • Get the number of milliseconds elapsed since the reference time

# Numbers

  • Check whether a value is an integer (Number.isInteger, Number.isSafeInteger)
  • Check whether a value is finite and of numeric type (Number.isFinite)
  • Check whether a value is NaN and a numeric type (Number.isNaN)
  • Converting a string to a floating-point number (Number.parseFloat)
  • Converting a string to an integer (Number.parseInt)
  • Convert a number to a string in the format appropriate for the specified locale (toLocaleString)
  • Convert a number to a string by specifying the number of significant digits (toPrecision)
  • Convert a number to a string in fixed-point format (toFixed)
  • Convert a number to a string in exponential format (toExponential)
  • Convert a number to a string in the specified radix (toString)
  • Number object
  • How to write numeric literals
All Rights Reserved. © 2025 The Learn Hub
Privacy Policy ‧ Terms of Use