codecamp

JavaScript支持情况

运行限制

基于安全考虑,小程序中不支持动态执行代码:

  • 不支持 eval
  • 不支持 new Function() 创建函数


ES6 支持情况一览表

字节小程序很大程度上是支持 es6 的,但是有少部分特性无法支持,目前的情况如下:

String

名称 ios9 ios>=10 android
codePointAt
normalize
includes
startsWith
endsWith
repeat
String.fromCodePoint

Array

名称 ios9 ios>=10 android
copyWithin
find
findIndex
fill
entries
keys
values
includes
Array.from
Array.of

Number

名称 ios9 ios>=10 android
isFinite
isNaN
parseInt
parseFloat
Number.isInteger
Number.EPSILON
Number.isSafeInteger

Math

名称 ios9 ios>=10 android
trunc
sign
cbrt
clz32
imul
fround
hypot
expm1
log1p
log10
log2
sinh
cosh
tanh
asinh
acosh
atanh

Object

名称 ios9 ios>=10 android
is
assign
getOwnPropertyDescriptor
keys
getOwnPropertyNames
getOwnPropertySymbols

Other

名称 ios9 ios>=10 android
Symbol
Set
Map
Proxy
Reflect
Promise
流加载与分包加载的区别
无标题文章
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

字节跳动小程序 介绍

字节跳动小程序 开发

字节跳动小程序开发框架

字节跳动小程序开发框架基础说明

字节跳动小程序开发框架基础功能

字节跳动小程序开发框架逻辑层

无标题文章

无标题目录

API

无标题文章

无标题文章

无标题文章

无标题文章

无标题文章

无标题目录

无标题目录

无标题文章

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }