class Turtle{
constructor(){
this.legs = 4;
this.shell = true;
}
speak(w){
console.log(w)
}
}
player1= new Turtle();
Typing in "player1." I expect it to find the variables / methods of player1, but it only pulls up ace's default list of snippets and local word list.
Typing in "player1." I expect it to find the variables / methods of player1, but it only pulls up ace's default list of snippets and local word list.