const num = parseInt("100")
Instead of using parseInt
or parseFloat
we can use +
operator
const num = +"100"
num + 5
// 105
const num = parseInt("100")
Instead of using parseInt
or parseFloat
we can use +
operator
const num = +"100"
num + 5
// 105
For further actions, you may consider blocking this person and/or reporting abuse
Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.
David Asaolu -
Zahra Sandra Nasaka -
Hanzla Baig -
sharathchandark -
Top comments (1)
Number(“100”)
Should also work.