我在学习WXS的一元运算符时,微信小程序微信小程序业务域名能不能配置公众号域名 mp.weixin.qq.com#微信小程序开发 ...。复制官方文档中的示例代码,打印的结果有点不太理解,希望有朋友能解疑一下。
文档地址
* 问题:
运行结果,只打印了一条日志出来 。按我的理解应该每行都会有打印日志的呀。
* 提供一个最简复现 Demo
// pages/index/utils.wxs
var a = 10, b = 20;
// 自增运算
console.log(10 === a++);
console.log(12 === ++a);
// 自减运算
console.log(12 === a--);
console.log(10 === --a);
// 正值运算
console.log(10 === +a);
// 负值运算
console.log(0 - 10 === -a);
// 否运算
console.log(-11 === ~a);
// 取反运算
console.log(false === !a);
// delete 运算
console.log(true === delete a.fake);
// void 运算
console.log(undefined === void a);
// typeof 运算
// console.log("number" === typeof a);++a);
// pages/index/jywxs.wxml
微信小程序开发相关问题解答;本文来自微信小程序工厂 http://www.xcxgc.com 转载请保留。
本文网址:http://www.91bianli.com/kaifazhinan/74034.html