Regarding the issue that as follows: let i = 011; console.log(i); // 9 But in strict mode, this approach breaks down: "use strict"; let i = 011; // Uncaught SyntaxError: Octal literals are not allowed in strict mode. console.log(i); This means that octal is not supported in strict mode. If you must use it, you can use a roundabout way to save the country: Set the octal data as a string, then convert it through "use strict"; let i = '011'; console.log(parseInt(i, 8)); // 9 This concludes the article on the issue of You may also be interested in:
|
<<: How to deploy Redis 6.x cluster through Docker
>>: Thoughts on truncation of multi-line text with a "show more" button
Recently, when I was learning how to use webpack,...
HTML is a hybrid language used for publishing on ...
Let's learn about different types of loops th...
An application of CSS animation, with the same co...
When implementing this function, the method I bor...
Copy the following code to the code area of Drea...
1. es startup command: docker run -itd -e TAKE_FI...
Table of contents 1. Redux 1.1. Store (librarian)...
Table of contents 1. Docker enables remote access...
Step 1: View the current kernel rew $ uname -a Li...
This article shares the specific code for JavaScr...
The MySQL built on Tencent Cloud is always very s...
1. Custom text selection ::selection { background...
1. Introduction to nmon Nmon (Nigel's Monitor...
Simply pull the image, create a container and run...