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

%f should use parseFloat() #21428

Closed
jcbhmr opened this issue Dec 1, 2023 · 0 comments
Closed

%f should use parseFloat() #21428

jcbhmr opened this issue Dec 1, 2023 · 0 comments
Labels
bug Something isn't working correctly good first issue Good for newcomers

Comments

@jcbhmr
Copy link
Contributor

jcbhmr commented Dec 1, 2023

if im not mistaken, this

deno/ext/console/01_console.js

Lines 3120 to 3127 in a1d823e

} else if (char == "f") {
// Format as a floating point value.
const value = args[a++];
if (typeof value == "number") {
formattedArg = `${value}`;
} else {
formattedArg = "NaN";
}

should be

// Format as a floating point value.
const value = args[a++];
if (typeof value == "symbol") {
  formattedArg = "NaN";
} else {
  formattedArg = `${NumberParseFloat(value)}`;
}

according to the spec:

  1. If specifier is %f:

    1. If Type(current) is Symbol, let converted be NaN

    2. Otherwise, let converted be the result of Call(%parseFloat%undefined, « current »).

https://console.spec.whatwg.org/#formatter

example of bug:

class Frac {
  constructor(num, den) {
    this.num = num
    this.den = den
  }
  [Symbol.toPrimitive]() {
    return this.num / this.den
  }
}
console.log("%f", new Frac(1, 2))

should print: 0.5

In Chrome:

class Frac {
  constructor(num, den) {
    this.num = num
    this.den = den
  }
  [Symbol.toPrimitive]() {
    return this.num / this.den
  }
}
console.log("%f", new Frac(1, 2))
VM382:10 0.5

Firefox:

class Frac {
  constructor(num, den) {
    this.num = num
    this.den = den
  }
0.500000

https://bugzilla.mozilla.org/show_bug.cgi?id=1846606

current Deno:

jcbhmr@PIG-2016:~/Documents$ deno
Deno 1.38.3
exit using ctrl+d, ctrl+c, or close()
REPL is running with all permissions allowed.
To specify permissions, run `deno repl` with allow flags.
> class Frac {
  constructor(num, den) {
    this.num = num
    this.den = den
  }
  [Symbol.toPrimitive]() {
    return this.num / this.den
  }
}
> console.log("%f", new Frac(1, 2))
NaN
undefined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working correctly good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

2 participants