Add missing semicolon for consistency

This commit is contained in:
Samuel Rabinowitz 2019-12-28 16:50:01 -07:00 committed by GitHub
parent a068a103f5
commit eb6aa85639
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -188,7 +188,7 @@ someVar = myArray.pop(); // Remove last element and return it
// Join all elements of an array with semicolon // Join all elements of an array with semicolon
var myArray0 = [32,false,"js",12,56,90]; var myArray0 = [32,false,"js",12,56,90];
myArray0.join(";") // = "32;false;js;12;56;90" myArray0.join(";"); // = "32;false;js;12;56;90"
// Get subarray of elements from index 1 (include) to 4 (exclude) // Get subarray of elements from index 1 (include) to 4 (exclude)
myArray0.slice(1,4); // = [false,"js",12] myArray0.slice(1,4); // = [false,"js",12]