
1 /* About Me */ 2 var pronouns = [ 3 ["they", "them", "theirs"], 4 [ "she", "her", "hers" ] 5 ]; // [INFO] Use both interchangeably! 6 var age = 25; 7 var location = "Pittsburgh, PA"; 8 var interests = [ 9 "free open-source software", 10 "queer liberation and sexuality", 11 "anarchy (relationship and otherwise)", 12 "mental health advocacy", 13 "indie & pop punk music" 14 ]; 15 function screm() { 16 console.log("AAAAAAAAAAAAAAAA"); 17 screm(); // Scream eternally. 18 }
