Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 324 Bytes

nuggets.md

File metadata and controls

9 lines (5 loc) · 324 Bytes

Language features

Both strings and arrays are called iterables

break lets us exit a loop

the + operator converts a string to numeric type when placed before the string i.e. +'222' becomes 222

Uppercase letters are less than lowercase letters since they come before in the ascii codes. So "H" < "h" is true