Basic JavaScript math operators
Write a function that takes 6 values (a,b,c,d,e,f) as arguments. Sum a and b. Then subtract by c. Then multiply by d and divide by e. Finally raise to the power of f and return the result. Hint: mind the order.
Premium
JavaScript
Console