Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use JS exponentiation operator in Number doc #4631

Merged
merged 1 commit into from
Apr 30, 2021

Conversation

sideshowbarker
Copy link
Member

@sideshowbarker sideshowbarker commented Apr 30, 2021

https://github.com/mdn/content/pull/858/files (27c69dc) changed some example code to use 2^53 for exponentiation. But since in JS, the caret doesn’t actually do exponentiation, if you enter 2^53 into the devtools console, it won’t work; it needs to instead be 2**53 — that is, to be runnable code, it needs to use the actual JS exponentiation operator: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Exponentiation


#858 (comment) is what introduced this mistake. Not sure now what I was thinking — other than I guess I didn’t realize then that this was intended to be showing runnable code (though in code comment).

https://github.com/mdn/content/pull/858/files (27c69dc) changed some
example code to use 2^53 for exponentiation. But since in JS, the caret
doesn’t actually do exponentiation, if you enter 2^53 into the devtools
console, it won’t work; it needs to instead be 2**53 — that is, to be
runnable code, it needs to use the actual JS exponentiation operator:

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Exponentiation
@sideshowbarker sideshowbarker requested a review from a team as a code owner April 30, 2021 21:39
@sideshowbarker sideshowbarker requested review from Rumyra and wbamberg and removed request for a team April 30, 2021 21:39
@github-actions
Copy link
Contributor

Copy link
Collaborator

@wbamberg wbamberg left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is fine.

Actually it wasn't #858 that made this change. I was going to merge that one today, but then I saw the change had already been made in a flaw-fixing PR (#3581, specifically https://github.com/mdn/content/pull/3581/files#diff-80363d7de685750ed7d65e89370cb768a9876bf214cde9e3481ed2af7077d81f ).

The reason to mention that is that it's possible this same fix has been applied in other places too, or at least that in future the flaw-fixing should perhaps convert <sup> into **, rather than ^. CC @nschonni .

FWIW though, although I agree that ** is better in this case for the reason you gave, I don't think it matters too much - it's still correct, just a little less convenient.

@wbamberg wbamberg merged commit 50b63bd into main Apr 30, 2021
@wbamberg wbamberg deleted the sideshowbarker/Number-use-exponentiation-operator branch April 30, 2021 22:37
@mdn mdn deleted a comment from Brazuca228 May 1, 2021
@mdn mdn deleted a comment from Brazuca228 May 1, 2021
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Aug 14, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants