w3cschool 编程狮,随时随地学编程
下载APP
|
登录
个人中心
首页
入门教程
编程课程
特色实战
畅学全站
首页
/
JavaScript简易教程 v0.3.0
/
标准库的其他功能(Other functionality of the standard library)
标准库的其他功能(Other functionality of the standard library)
JavaScript标准库相对简单,但有很多其他东西你可以使用:
Date
:日期构造函数,主要功能有转换和创建日期字符串,访问日期组成部分(年,小时等)。
JSON
:一个对象,功能是转换和生成JSON数据。
console.*
方法:浏览器的具体方法,不是语言成分的部分,但他们也可以在
Node.js
中工作。
数学(Math)
下一步学什么?
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录
本文约定(Conventions used in this blog post)
语言的性质(The nature of the language)
语法(Syntax)
变量和赋值(Variables and assignment)
值(Values)
布尔(Booleans)
数字(Numbers)
字符串(Strings)
语句(Statements)
函数(Functions)
异常处理(Exception handling)
严格模式(Strict mode)
变量作用域和闭包(Variable scoping and closures)
对象和继承(Objects and inheritance)
数组(Arrays)
正则表达式(Regular expressions)
数学(Math)
标准库的其他功能(Other functionality of the standard library)
下一步学什么?
欢迎反馈
关闭
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; }