iT邦幫忙

0

VBScript 改做 JAVAScript

  • 分享至 

  • xImage

請問怎樣可以將以下的VBSCRIPT 改做JAVASCRIPT?

for each S3 in S1
S=S+cint(S3)
Next

for Temp=lbound(QA1) to Ubound(QA1)

next

謝謝

neil_0221 iT邦新手 5 級 ‧ 2022-09-13 10:38:35 檢舉
let S1=["1","2","3"];
let S=0;
for(let S3 of S1 ){
S+=parseInt(S3);
}
console.log(S);
small IT iT邦新手 5 級 ‧ 2022-09-13 11:27:41 檢舉
Thanks, I will try it.
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 個回答

1
japhenchen
iT邦超人 1 級 ‧ 2022-09-13 10:50:57
    let s1 = ['1','2','3','4','5','6','7','8','9','10'] ;
    let s = 0 ;
    s1.forEach(s3 => s+=parseInt(s3)) ;
    console.log(s);
small IT iT邦新手 5 級 ‧ 2022-09-13 16:39:25 檢舉

Thanks.

我要發表回答

立即登入回答