Rumah > Artikel > hujung hadapan web > kaedah dalaman javascript
JavaScript ialah bahasa pengaturcaraan yang digunakan secara meluas dalam pembangunan web. Ia menyediakan banyak fungsi dan kaedah terbina dalam untuk bekerja dengan pelbagai jenis data seperti rentetan, operasi matematik, tatasusunan, objek, tarikh dan masa. Dalam artikel ini, kita akan membincangkan beberapa kaedah dalaman penting JavaScript.
1. Kaedah rentetan
Contoh:
let str = "Hello World!"; let result = str.indexOf("World"); console.log(result); // 输出6
Contoh:
let str = "Hello World!"; let result = str.slice(0, 5); console.log(result); // 输出Hello
Contoh:
let str = "Hello World!"; let result = str.replace("World", "JavaScript"); console.log(result); // 输出Hello JavaScript!
2. Kaedah matematik
Contoh:
let num = 3.141592654; let result = Math.round(num); console.log(result); // 输出3
Contoh:
let num = 3.141592654; let result = Math.floor(num); console.log(result); // 输出3
Contoh:
let result = Math.random(); console.log(result); // 输出0到1之间的随机数
3. Kaedah tatasusunan
Contoh:
let array = [1, 2, 3]; let result = array.push(4, 5); console.log(array); // 输出[1, 2, 3, 4, 5] console.log(result); // 输出5
Contoh:
let array = [1, 2, 3]; let result = array.pop(); console.log(array); // 输出[1, 2] console.log(result); // 输出3
Contoh:
let array = [1, 2, 3, 4, 5]; let result = array.splice(2, 2, 6, 7); console.log(array); // 输出[1, 2, 6, 7, 5] console.log(result); // 输出[3, 4]
4. Kaedah objek
Contoh:
let obj = { name: "Tom", age: 18, gender: "Male" }; let result = Object.keys(obj); console.log(result); // 输出[name, age, gender]
Contoh:
let obj = { name: "Tom", age: 18, gender: "Male" }; let result = Object.values(obj); console.log(result); // 输出[Tom, 18, Male]
Contoh:
let target = { name: "Alice", age: 20 }; let source = { name: "Bob", gender: "Male" }; let result = Object.assign(target, source); console.log(result); // 输出{name: "Bob", age: 20, gender: "Male"}
5 kaedah tarikh dan masa
Contoh:
let now = new Date(); console.log(now); // 输出表示当前时间的Date对象
Contoh:
let timestamp = Date.parse("2022-01-01T00:00:00"); console.log(timestamp); // 输出所表示日期时间的毫秒级时间戳
Contoh:
let now = new Date(); let year = now.getFullYear(); console.log(year); // 输出当前年份
Di atas memperkenalkan beberapa kaedah dalaman JavaScript, yang merupakan alatan penting untuk menulis program JavaScript. Menguasai kaedah ini bukan sahaja akan membantu meningkatkan kecekapan pengaturcaraan, tetapi juga membantu menulis kod yang lebih cekap. Dalam aplikasi praktikal, kita harus memilih kaedah yang sesuai mengikut keperluan khusus dan menggunakannya secara rasional.
Atas ialah kandungan terperinci kaedah dalaman javascript. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!