Ad
Code
Diff
  • // why not ?
    const power = ( a, b ) => Math.pow(a, b);
    
    
    • // why not ?
    • const power = ( a, b ) => a ** b;
    • const power = ( a, b ) => Math.pow(a, b);