-3
function nanogegreee(num7, isInteger) {
if (isInteger === void 0) {
isInteger = false;
}
return Math.floor(num7 * num7);
}
console.log(nanogegreee(4.6));
function nanogegreee(num7, isInteger) {
if (isInteger === void 0) {
isInteger = false;
}
return Math.floor(num7 * num7);
}
console.log(nanogegreee(4.6));
由於您將其標記爲TypeScript問題,如果通過問號標記引用接口構造或參數,則參數後面的問號表示可以從對象實例化中忽略它(如果在接口中)或函數調用(如果函數中的參數)。
至於代碼,請在你的問題更具體。
什麼問號?此外,isInteger似乎沒有任何用途。並請妥善格式化您的代碼。 – Carcigenicate