LoginSignup
0
0

More than 3 years have passed since last update.

aura:componentの中での文字列から数値への変換

Last updated at Posted at 2020-12-08

たまにしか使わないので、良く忘れてしまいます。私の覚えです。

コントローラ、ヘルパーはJava Scriptと似てて非なる部分もあって、戸惑うことがあります。
その一つが文字列から数値への変換。

動かない例

var invalue ="1234";
var myInt = Integer.parseInt(invalue); 

var myInt2 = Integer.valueOf(invalue); 

正解

var invalue ="1234";
var myInt = parseInt(invalue); 
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0