Return the current timestamp in milliseconds.
This compatibility helper delegates to native Date.now().
Date.now()
Usage:
const ret = Date.now();console.log(ret); Copy
const ret = Date.now();console.log(ret);
Output:
1585325367122 Copy
1585325367122
The current timestamp in milliseconds.
Use Date.now() instead.
Return the current timestamp in milliseconds.
This compatibility helper delegates to native
Date.now().Usage:
Output: