Answers for "how to cast a string as a number"

132

how to convert string to int js

let string = "1";
let num = parseInt(string);
//num will equal 1 as a int
Posted by: Guest on February-24-2020
1

string to int php

$str = "10";
$num = (int)$str;
Posted by: Guest on December-17-2020

Code answers related to "how to cast a string as a number"

Code answers related to "Javascript"

Browse Popular Code Answers by Language