0
Q:

parse integer javascript

var myInt = parseInt("10.256"); //10
var myFloat = parseFloat("10.256"); //10.256
70
parseInt(value);

let string = "321"
console.log(string); // "321" <= string

let number = parseInt(string);
console.log(number) // 321 <=int
4
var myInt = parseInt("10.256"); //10
var myFloat = parseFloat("10.256"); //10.256
3

 var a = parseInt("10") + "<br>";
var b = parseInt("10.00") + "<br>";

 var c = parseInt("10.33") + "<br>";
var d = parseInt("34 45 66") + "<br>";

 var e = parseInt(" 60 ") + "<br>";
var f = parseInt("40 years") + "<br>";

 var g = parseInt("He was 40") + "<br>";

var h = parseInt("10", 10)+ "<br>";

 var i = parseInt("010")+ "<br>";
var j = parseInt("10", 8)+ "<br>";
var k = parseInt("0x10")+ "<br>";
var l = parseInt("10", 16)+ "<br>";


 var n = a + b + c + d + e + f + g + "<br>" + h + i + j + k +l;

 
2
// parseInt
parseInt("10");//------------ 10
parseInt("10.00");//--------- 10
parseInt("10.33")//--------- 10
parseInt("34 45 66")//------ 34
parseInt("   60   ")//------ 60
parseInt("40 years")//------ 40
parseInt("He was 40")//----- NaN
parseInt("10", 10)//-------- 10
parseInt("010")//----------- 10
parseInt("10", 8)//--------- 8
parseInt("0x10")//---------- 16
parseInt("10", 16)//-------- 16
// parseFloat
parseFloat("10")//-----------10
parseFloat("10.00")//--------10
parseFloat("10.33")//--------10.33
parseFloat("34 45 66")//-----34
parseFloat(" 60 ")//---------60
parseFloat("40 years")//-----40
parseFloat("He was 40");//----NaN
/ mm.mirzaei /
6
/* 
 * @param string Required. The value to parse. If this argument is not
 * a string, then it is converted to one using the ToString abstract
 * operation. Leading whitespace in this argument is ignored.
 *
 * radix
 * @param radix Optional. An integer between 2 and 36 that represents
 * the radix (the base in mathematical numeral systems) of the string.
 * Be careful—this does not default to 10!
 * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/parseInt#Description
 * for what happens when radix is not provided
 */
parseInt(string, radix);

console.log(parseInt(' 0xF', 16));
// expected output: 1500

console.log(parseInt('321', 2));
// expected output: 0

console.log(parseInt('321', 10));
// expected output: 321
-1
Cakephp
<?php
echo $this->Form->input('config_reset_free_credit_day', array(
  'class' => 'form-control selectpicker',
  'data-live-search' => true, 
  'required' 	=> 'required',
  'id'		=> 'config_reset_free_credit_day',
  'label' => "<font class='red'> * </font>" . __d('company', 'config_reset_free_credit_day'),
  'empty' => __("Please select")
));
?>


parseInt($('#config_reset_free_credit_month').val() + 1), 
parseInt($('#config_reset_free_credit_day').val()) + 1)
-1
parseFloat("3.14"); 
parseFloat("314e-2"); 
parseFloat("0.0314E+2"); v
var cadena = "3.14"; parseFloat(cadena); 
parseFloat("3.14más caracteres no dígitos");
-2

New to Communities?

Join the community