RulesEmptyStringAssignmentOn this pageAvoid using empty strings to represent NULLTo improve the readability, avoid using empty strings to represent NULL. Noncompliant Code Example var := ''; Compliant Solution var := null;