Aspiring Software Developer with a passion for creating innovative solutions. Eager to apply my skills in a challenging and dynamic environment. Currently honing my abilities through personal projects and online courses.
class Interests{
constructor(name){
this.name=name
}
goals = () => {
console.log(`My ${this.name} Goals`)
console.log("- To build a strong foundation in computer science fundamentals.")
console.log("- To learn new programming languages and technologies.")
console.log("- To build a career in data science and machine learning.")
}
}
const Hm = new Interests("Hm")
Hm.goals()