Operator '+' cannot be applied to types 'Number' and 'Number'
While assigning variable type as Number got the following error in TypeScript, Operator ‘+’ cannot be applied to types ‘Number’ and ‘Number’ const foo = (a:Number,b: Number) => { return a+b; } So what’s wrong...