Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Comments on Explaining the result of an arithmetic expression in JavaScript

Post

Explaining the result of an arithmetic expression in JavaScript

+1
−5

I misunderstand why the following code outputs -1 in console.

x = 42;
x = (x == 42) * -1 + (x != 42) * x;

-1

Due to Type Coercion, the comparison of x to 42 yields true and is thus translated to 1.

So 1 * -1 yields -1.

Now, (x != 42) which is false yields 0 so I have expected to get in console

-42

Because -1 + 0 * 42 MEANS -42.

So why did I get -1 in the end?

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

2 comment threads

1 + 0 * 42 MEANS -42 ??? (4 comments)
Zero multiplied by anything is zero, so `0 * 42` is zero. Thus, `-1 + 0 * 42` is `-1 + 0` (because... (3 comments)
1 + 0 * 42 MEANS -42 ???
elgonzo‭ wrote almost 2 years ago · edited almost 2 years ago

You need copious amounts of coffee, me thinks...

The result of -1 + 0 * 42 is definitely -1.

(Fun quizz and trick question: What's the result of -1 + 0 * ∞?)

deleted user wrote almost 2 years ago

elgonzo‭ why are you saying I need coffee?

1 * 42 equals 42 so why would you say -1 + 0 (the minus_one stays minus_one) * 42 is -1?...

And I don't know enough about infinity in math to answer.

Skipping 1 deleted comment.

deleted user wrote almost 2 years ago · edited almost 2 years ago

elgonzo‭ I didn't need coffee but I needed more knowledge, about operator precedence, as from Dirk Herrmann's answers.

Of course that given operator precedence -1 + 0 * 42 yields -1.

Lundin‭ wrote almost 2 years ago

The operator precedence will be the same as in basic math... so it's not even a programming problem.