Skip to content

Instantly share code, notes, and snippets.

@wila-diaz
Created January 6, 2021 15:23
Show Gist options
  • Save wila-diaz/6be7d6185a48dd91b89ad7a9ec287230 to your computer and use it in GitHub Desktop.
Save wila-diaz/6be7d6185a48dd91b89ad7a9ec287230 to your computer and use it in GitHub Desktop.
IFFE function in Js
// Función que se ejecuta inmediatamente y retorna la suma de un binomio con exponente c
(function(a,b,c){
console.log((a+b)**c)
})(3,2,2)
// Example (3+2)**2 =25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment