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