Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 261 Bytes

section3.10.md

File metadata and controls

11 lines (8 loc) · 261 Bytes

Section 3.10: Array

An array of values:

let threePigs: number[] = [1, 2, 3];
let genericStringArray: Array<string> = ['first', '2nd', '3rd'];

console.log(threePigs); // [ 1, 2, 3 ]
console.log(genericStringArray); // [ 'first', '2nd', '3rd' ]