Skip to content

Instantly share code, notes, and snippets.

@bgoonz
Last active July 5, 2021 22:20
Show Gist options
  • Save bgoonz/bc5b016cc3808562d3e5e0a19276a58b to your computer and use it in GitHub Desktop.
Save bgoonz/bc5b016cc3808562d3e5e0a19276a58b to your computer and use it in GitHub Desktop.
ughhhhhhhhh
class JobSearch {
constructor(context, fun, ...magicConchWillIEnjoyThis){
this.context = context;
this.fun = fun;
this.magicConchWillIEnjoyThis = (this.fun===this.context);
}
howAboutNow(){
console.log(this.magicConchWillIEnjoyThis);
}
}
let reality = new JobSearch ('jobHunt','NO','')
reality.howAboutNow()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment