“Fungsi Panah di JS” Kode Jawaban

Fungsi Panah di ES6

let func = (a) => {}         // parentheses optional with one parameter
let func = (a, b, c) => {} // parentheses required with multiple parameters
Outrageous Ostrich

Fungsi Panah JavaScript

hello = () => {
  return "Hello World!";
}
Ankur

aturan fungsi panah javascript

const add3 = (num1, num2, num3) => return num1 + num2 + num3;
Fantastic Falcon

aturan fungsi panah javascript

const sayHi = ()=>console.log('Hi');
Fantastic Falcon

Fungsi Panah di JS

/**
I think that you might be looking for 
the js "arrow function"; I hope that 
this example below helps ;)
**/ 

// usual function
function fartOne(){
    console.log('Pooofff... pof.. ppf.. poof.. p');
}

// arrow function to do the same
const fartTwo = () => console.log('Baaaf... paf.. poof.. poffie.. plop');

// call the functions to test 'em out..
fartOne();
fartTwo();
CoderHomie

Jawaban yang mirip dengan “Fungsi Panah di JS”

Pertanyaan yang mirip dengan “Fungsi Panah di JS”

Lebih banyak jawaban terkait untuk “Fungsi Panah di JS” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya