Wisdom Ekpot wrote
Converting strings to numbers with vanilla JavaScript
JavaScript gives us the ability to easily transform a String to a primitive number. But the issue is that if you were to use a strict comparison to compare the two, it would fail because they’re two different types of objects. so let’s see an instance: Let see some ways we could convert strings to number […]
December 20, 2019 in Code examples & Javascript