0 / 60 seg.

What value will be printed with the following code?

class Calculator {
  static add(a, b) {
    return a + b;
  }
}
console.log(Calculator.add(1, 2));