Any idea why the math isn’t working in my script. I am expecting two numbers to be added together (2+20018 = 20020) but instead get 220018
let table = base.getTable(‘Project List’);
let queryResult = await table.selectRecordsAsync();
let record = queryResult.getRecord(queryResult.recordIdso0]);
console.log(record)
let year = record.getCellValue(‘Year Count’)
console.log(year)
let num = year+20018
await table.updateRecordAsync(record.id, {“Project #”: num})