admin管理员组文章数量:1342636
totalbalancetemp = (Number(this.balance)) + (Number(this.pastAmount));
My totalbalancetemp
is returning undefined whereas this.balance
is equal to 34 and this.pastAmount
is equal to 23.
I have this in controller and displaying totalbalancetemp
using exp in html
totalbalancetemp = (Number(this.balance)) + (Number(this.pastAmount));
My totalbalancetemp
is returning undefined whereas this.balance
is equal to 34 and this.pastAmount
is equal to 23.
I have this in controller and displaying totalbalancetemp
using exp in html
- if totalbalancetemp is a property of the ponent. then shouldn't you call it by this.totalbalancetemp – Thirueswaran Rajagopalan Commented Mar 8, 2017 at 8:28
5 Answers
Reset to default 2Supply the proper type.
let totalbalancetemp:number = balance + pastAmount
This will throw an error, because you are now guaranteeing that totalbalancetemp
will be a number
.
The type String is not assignable to type 'number'
Try the following:
let balance:string = '34',
pastAmount:string = '23',
totalbalancetemp:number = 0
totalbalancetemp = Number(balance) + Number(pastAmount)
alert(totalbalancetemp)
totalbalancetemp = (Number(this.balance)) + (Number(this.pastAmount));
please try this it should work
totalbalancetemp:number = (+this.balance) + (+this.pastAmount);
var totalbalancetemp = null; this.balance = 34; this.pastAmount = 23;
totalbalancetemp = (Number(this.balance)) + (Number(this.pastAmount));
alert(totalbalancetemp);
-->totalbalancetemp - Define Variable (or) any type
totalbalancetemp should be replaced by this.totalbalancetemp if it's part of the angular 2 ponent
Do a +this.balance
in the .ts file or this.balance*1
or this.balance/1
on in the template file.
本文标签: javascripttypescriptconvert string to numberStack Overflow
版权声明:本文标题:javascript - typescript - convert string to number - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743697879a2523811.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论