const name = "Sohan" ;
Developer dev = new Developer(name);
While (dev.isCoding()) {
dev.listenMusic();
dev.drinkCoffee();
dev.stackOverflow();
dev.documentation();
}
let Developer = {
name : "Sohan" ,
location : "India" ,
isCoding : true ,
drink : [ "Coffee" ,"Tea" , "Water" ],`
listen : " Spotify " ,
}
let languages = [
"Python",
"Java",
"Javascript",
"HTML",
"CSS",
"C++" ]
let frameworks = [
"React",
"Bootstrap",
"Tailwind"]
let others = [
"Git",
"Github",
"SCSS",
"Figma"]