Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 972 Bytes

null.md

File metadata and controls

25 lines (17 loc) · 972 Bytes

Null

Null is a concept that denotes the absence of a value.

Exercises

Badge printer

This exercise prints employee information on a badge and wraps the text to fit on a given maximum width. The reference implementation (C#) teaches:

  • the null literal
  • basic null checking at compile time and runtime
  • nullable types

Implementations

Track Exercise Changes
C# nullability None
JavaScript nullability Use file level function instead of class