//script.js start
class GithubUser {
constructor(name, languages, technologies, occupation, location) {
this.name = name
this.languages = languages
this.technologies = technologies
this.occupation = occupation
this.location = location
}
const sayHello = () => {
console.log(`Hello world! I'm ${this.name}. A ${this.occupation} based
in ${this.location}. Currently, I'm learning ${this.technologies.frontend.js[0]}
with ${this.languages[1]}.`)
}
}
const name = " SYED MD ASADULLAH"
let interests = ["Web Front-end", "Graphic Design", "Open-Source", "Astronomy"]
let languages = ["Python", "Typescript", "Javascript", "Java"]
let technologies = {
frontend: {
js: ["Reactjs", "Nextjs"],
css: ["Tailwind", "Styled-Components", "MaterialUI", "Bootstrap"]
},
backend: {
python: ["django", "FastAPI"],
javascript: ["expressjs"],
java: ["Spring MVC", "Spring Boot"]
},
cloud: [AWS S3, AWS EC2]
misc: ["Linux", "git", "github", "VSCode", "Photoshop", "Illustrator"]
}
const Asad = new GitHubUser(
name,
languages,
technologies,
"CS Undergrad & Java developer",
"Kolkata, India"
)
Asad.sayHello()
//script.js end
- Kolkata
-
01:45
(UTC -12:00) - in/syed-asadullah-2559bb20b
- https://x.com/Asad30003?t=tkoFiKbVVktHzA61C0Occg&s=08
Popular repositories Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.