gpt4 book ai didi

python a[1 :] 的 javascript 简写

转载 作者:太空宇宙 更新时间:2023-11-04 07:02:31 24 4
gpt4 key购买 nike

所以我在 javascript 中有一个字符串

var s="may the force";

我只想要部分,在 python 中我可以做 s[4:],所以有javascript 中有任何等价物吗?

最佳答案

你可以使用:

var s = "may the force";
var t = s.substring(4);

alert(t); //alerts "the force"

检查这个Fiddle

关于python a[1 :] 的 javascript 简写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15926979/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com