-
Notifications
You must be signed in to change notification settings - Fork 290
Open
Description
给大家分享一个我百度出来的一个范例,我看的不是很懂,但是觉得写得真心简洁而且好,已经在测试案例中测试通过了!!!
function sumStrings(a,b){
var res='', c=0;
a = a.split('');
b = b.split('');
while (a.length || b.length || c){
c += ~~a.pop() + ~~b.pop();
res = c % 10 + res;
c = c>9;
}
return res.replace(/^0+/,'');
}
happyjudy, fengyuchaochao, evilrescuer, viyoung, ldxldx and 2 more
Metadata
Metadata
Assignees
Labels
No labels