Quick Tip JavaScript strings to numbers
This tip is really just different ways to convert strings to numbers. Did you know that the follow code works just fine: var string_to_number = "10" * "10"; // result 100 I thought that was cool, but funky right? Note, this does not work with the “+” operator. So a cool way to convert a [...]