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 8601293
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T01:48:31+00:00 2026-06-12T01:48:31+00:00

Possible Duplicate: Why can't I access a property of an integer with a single

  • 0

Possible Duplicate:
Why can't I access a property of an integer with a single dot?

I was reading an article, and came across the strange behaviour of javascript toFixed method. I don’t understand the reason for the last statement. Can anyone explain please?

(42).toFixed(2); // “42.00” Okay

42.toFixed(2); // SyntaxError: identifier starts immediately after numeric literal

42..toFixed(2); // “42.00” This really seems strange

  • 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-06-12T01:48:32+00:00Added an answer on June 12, 2026 at 1:48 am

    A number in JavaScript is basically this in regex:

    [+-]?[0-9]*(?:\.[0-9]*)?(?:[eE][+-]?[0-9]+)?
    

    Note that the quantifiers are greedy. This means when it sees:

    42.toFixed(2);
    

    It reads the 42. as the number and then is immediately confronted with toFixed and doesn’t know what to do with it.

    In the case of 42..toFixed(2), the number is 42. but not 42.. because the regex only allows one dot. Then it sees the . which can only be a call to a member, which is toFixed. Everything works fine.

    As far as readability goes, (42).toFixed(2) is far clearer as to its intention.

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

Sidebar

Related Questions

Possible Duplicate: javascript object, access variable property name? I'm sure it can be done
Possible Duplicate: How can I access local scope dynamically in javascript? Hi all. We
Possible Duplicate: C++ delete - It deletes my objects but I can still access
Possible Duplicate: Can Read-Only Properties be Implemented in Pure JavaScript? I have an Object
Possible Duplicate: Can I create an automatic property (no private member) with get and
Possible Duplicate: How to access a numeric property? I am trying to read an
Possible Duplicate: Can I set a breakpoint on 'memory access' in GDB? I want
Possible Duplicate: C++ delete - It deletes my objects but I can still access
Possible Duplicate: obj-c access property dynamically I'm attempting to access an object’s properties dynamically
Possible Duplicate: Can I set a breakpoint on 'memory access' in GDB? I have

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.