package com.example;
import jsinterop.annotations.JsMethod;
import jsinterop.annotations.JsPackage;
import jsinterop.annotations.JsType;
@JsType(namespace = JsPackage.GLOBAL)
public class Calculator {
@JsMethod
public static int add(int a, int b) {
return a + b;
}
}
script
var result = Calculator.add(2, 3);