标签:之间 operator 连接 https hello 混合 get href keyword
let one = ‘Hello, ‘;
let two = ‘how are you?‘;
let joined = one + two;
joined;
变量 joined
的值的结果,它包含的值为 "Hello, how are you?"。let multiple = one + one + one + one + two;
multiple;
let response = one + ‘I am fine — ‘ + two;
response;
标签:之间 operator 连接 https hello 混合 get href keyword
原文地址:https://www.cnblogs.com/furuihua/p/13827445.html