My Name is Justin Neff
I am a technology enthusiast. I love learning about new technology whether it's' hardware or software.
import {Technology} from '/technolgy.js';
import {Interests} from '/Interests.js'
export default Learning extends Interests {
constructor(){
super();
this.knowledge = new Technology();
this.hobbies = this.knowledge.getDefaults();
}
//call with: learning.addHobbies("hardware");
addHobbies(hobby){
this.hobbies.push(hobby)
}
}