<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <script> // 1. 检测获取字符串的长度 length (长度) var str = 'my name is andy'; console.log(str.length); // 15 // 2. 字符串的拼接 + 只要有字符串和其他类型相拼接 最终的结果是字符串类型 console.log('中国' + 'Made'); // 字符串的 中国制造 console.log('即兴小索奇' + 18); // '即兴小索奇18' console.log('string' + true); // stringtrue console.log(12 + 12); // 24 console.log('12' + 12); // '1212' </script> </head> <body> </body> </html>