function nanogegreee(num7, isInteger) {
if (isInteger === void 0) {
isInteger = false;
}
return Math.floor(num7 * num7);
}
console.log(nanogegreee(4.6));
答案 0 :(得分:0)
由于您将此标记为TypeScript问题,如果通过问号标记,您指的是接口构造或参数,则参数后面的问号表示可以从对象实例化(如果在接口中)或函数调用(如果函数中的参数)。
就代码而言,请在您的问题中更具体。