Explanation of the problem that JavaScript strict mode does not support octal

Explanation of the problem that JavaScript strict mode does not support octal

Regarding the issue that JavaScript strict mode does not support octal, first of all, we all know that JavaScript can express octal by adding 0 in front of the number.

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 parseInt , and set the conversion base to octal.

"use strict";
let i = '011';
console.log(parseInt(i, 8)); // 9

This concludes the article on the issue of JavaScript strict mode not supporting octal. For more information on JavaScript strict mode, please search previous articles on 123WORDPRESS.COM or continue browsing the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • JavaScript reference type examples detailed explanation [array, object, strict mode, etc.]
  • JS strict mode principle and usage example analysis
  • JavaScript strict mode (use strict) usage example analysis
  • Detailed explanation of JavaScript strict mode (including the difference between strict mode and non-strict mode)
  • Using Strict Mode in JavaScript
  • JavaScript variable hoisting and strict mode case analysis
  • A brief analysis of strict mode in JS
  • Summary of JS strict mode knowledge points
  • Detailed explanation of several directions of this in JavaScript strict mode
  • In-depth understanding of JavaScript strict mode (Strict Mode)

<<:  How to deploy Redis 6.x cluster through Docker

>>:  Thoughts on truncation of multi-line text with a "show more" button

Recommend

How to debug loader plugin in webpack project

Recently, when I was learning how to use webpack,...

W3C Tutorial (3): W3C HTML Activities

HTML is a hybrid language used for publishing on ...

Using loops in awk

Let's learn about different types of loops th...

Implementing a table scrolling carousel effect through CSS animation

An application of CSS animation, with the same co...

Vue.js implements tab switching and color change operation explanation

When implementing this function, the method I bor...

Example code for using HTML ul and li tags to display images

Copy the following code to the code area of ​​Drea...

Detailed explanation of docker version es, milvus, minio startup commands

1. es startup command: docker run -itd -e TAKE_FI...

Front-end state management (Part 2)

Table of contents 1. Redux 1.1. Store (librarian)...

Intellij IDEA quick implementation of Docker image deployment method steps

Table of contents 1. Docker enables remote access...

How to delete extra kernels in Ubuntu

Step 1: View the current kernel rew $ uname -a Li...

JavaScript canvas to achieve meteor effects

This article shares the specific code for JavaScr...

A complete guide to some uncommon but useful CSS attribute operations

1. Custom text selection ::selection { background...

Detailed explanation of the process of building and running Docker containers

Simply pull the image, create a container and run...