let j = {
interests: [
"software",
"investing", //Sometimes π and sometimes π
"poker", //haha investing and poker? yes.
"music production"
],
degrees: [
{
school: "Stevens Institute of Technology",
type: "Master of Science",
major: "Financial Engineering",
certificate: "Algorithmic Trading Strategies"
},
{
school: "Stevens Institute of Technology",
type: "Bachelor of Engineering",
major: "Software Engineering",
minor: "Computer Science"
}
],
website: "https://www.jthepanda.com/" //click the galaxy
}
Oh, I almost forgot:
j.languages = [...arrayOfProgrammingLanguages].sort(compareByProficiency).splice(0, 6)
console.log(j.languages)
> ["JavaScript", "Python", "R", "C#", "Java", "C++"]
>