TypeScript 2023-08-29 TypeScript - TextBox Here is code I used to convert a textbox that should contain a number into a string 12345var rowsShown : number = 20;ppSize: string = ($('txtPageSize').val() as string);if (isNumber(ppSize)) { rowsShown = Number(ppSize);}