4,374 questions
I show that when the string 'a1234' is passed into Number.IsInteger(), the value is false:
function main(workbook: ExcelScript.Workbook){
let str: string = "a1234"
console.log(Number.isInteger(str)) //false
}
Is this what you were expecting? If not, what were you expecting? Or what are you trying to achieve?