Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6597099
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T18:09:53+00:00 2026-05-25T18:09:53+00:00

I was fiddling around with different things, like this var a = 1, b

  • 0

I was fiddling around with different things, like this

var a = 1, b = 2;
alert(a + - + - + - + - + - + - + - + b); //alerts -1

and I could remove the spaces, and it would still work.

a+-+-+-+-+-+-+-+b

Then I tried

a + + b

It ran and evaluated to 3, but when I removed the spaces, (a++b) it wouldn’t run, and it had a warning which read “Confusing plusses.”

I can understand that in cases like

a+++++b

which could be interpreted as any of the following

(a++) + (++b)
(a++) + +(+b)
a + +(+(++b))
a + +(+(+(+b)))

that it would be confusing.

But in the case of

a++b

the only valid way to interpret this, as far as I can tell, is

a + +b

Why doesn’t a++b work?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T18:09:54+00:00Added an answer on May 25, 2026 at 6:09 pm

    The Javascript parser is greedy (it matches the longest valid operator each time), so it gets the ++ operator from a++b, making:

    (a++) b
    

    which is invalid. When you put in spaces a + + b, the parser interprets it like this:

    (a) + (+b)
    

    which is valid and works out to be three.

    See this Wikipedia article on Maximal munch for more details.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So been fiddling around with this for a while now but still no luck.
Remember, this is using python. Well, I was fiddling around with an app I
I've been fiddling around with CHESS , which seems like an incredibly useful tool.
After fiddling around with an issue I am having I have come to this
While fiddling around to try to automate some process, I ran into this seemingly
Up until around 3.3beta1 items in the WP_Admin_Bar Object could be accessed using this
I have this, and i've been fiddling around with it for a while but
How can I append this URL variable to the list? I am fiddling around
I'm just fiddling around with user scripts in chrome right now, so please bear
I've been fiddling with ASP.NET MVC since the CTP, and I like a lot

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.