Sự khác biệt giữa substr và substring

string,tipjs

substr() Hình thức của hàm là substr(startIndex,length). Nó startIndex trả về từ chuỗi con và trả về length số lượng ký tự.

var s = "hello";
( s.substr(1,4) == "ello" ) // true

substring()Hình thức của hàm là substring(startIndex,endIndex). Nó trả về chuỗi con từ startIndex đến endIndex - 1.

var s = "hello";
( s.substring(1,4) == "ell" ) // true

Có thể bạn đã miss một số snippets code

using javascript callback style error handling

encode/decode base64 with JS

Encoding to base64 is done with the btoa command

Làm phẳng mảng dùng phương pháp đệ quy

Làm phẳng mảng dùng phương pháp đệ quy

Spread Operator for Objects

Using the spread operator during an Object declaration will assign the properties of the referenced Object to the new Object.

Await in a for loop

How to Await in a for loop