From a1693ff29b8564c34f87c7296f96d33841efb78f Mon Sep 17 00:00:00 2001 From: Michael Ficarra Date: Mon, 29 Sep 2025 19:30:59 -0700 Subject: [PATCH] =?UTF-8?q?Editorial:=20replace=20"is=20at=20least"=20with?= =?UTF-8?q?=20=E2=89=A5=20in=20parseInt=20(#3608)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- spec.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec.html b/spec.html index b69bf47031..74e8e36422 100644 --- a/spec.html +++ b/spec.html @@ -29976,7 +29976,7 @@

parseInt ( _string_, _radix_ )

1. Else, 1. Set _R_ to 10. 1. If _stripPrefix_ is *true*, then - 1. If the length of _S_ is at least 2 and the first two code units of _S_ are either *"0x"* or *"0X"*, then + 1. If the length of _S_ ≥ 2 and the first two code units of _S_ are either *"0x"* or *"0X"*, then 1. Set _S_ to the substring of _S_ from index 2. 1. Set _R_ to 16. 1. If _S_ contains a code unit that is not a radix-_R_ digit, let _end_ be the index within _S_ of the first such code unit; otherwise let _end_ be the length of _S_.