Skip to content

Instantly share code, notes, and snippets.

@Kadreev
Created July 1, 2022 02:40
Show Gist options
  • Save Kadreev/42b6e9feec1fc18239f18f7c55e1c068 to your computer and use it in GitHub Desktop.
Save Kadreev/42b6e9feec1fc18239f18f7c55e1c068 to your computer and use it in GitHub Desktop.
functions in object
let voleur = {
action : () =>console.log ('Coup de dague fatal') ,
crie : ('pour la horde!!!!') ,
coupfatal :()=> console.log ('coup dans le dos')
}
voleur.action() ;
voleur.coupfatal() ;
console.log(voleur.crie) ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment