This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ACCESS */ | |
let angie = { | |
firstName: 'Angie', | |
lastName: 'McCarthy', | |
age: 20, | |
} | |
const ageKey = 'age' | |
// 1 App. dot notation |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
let name1 = 'Darling Garcia'; | |
name1 = 'Darling Garcia'; | |
const name2 = "Gus"; | |
let number = 2.34 | |
console.log(number) | |
*/ | |
// Other comment |
Sorry, this is too big to display.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
from collections import namedtuple | |
# =============================================================== | |
# Math | |
# =============================================================== | |
V2 = namedtuple('Vertex2', ['x', 'y']) | |
V3 = namedtuple('Vertex3', ['x', 'y', 'z']) |