SyntaxFix
Write A Post
Hire A Developer
Questions
In typescript you can do the following to suppress the error:
error
let subString?: string;
subString > !null; - Note the added exclamation mark before null.
subString > !null;