Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 865 Bytes

nullable.md

File metadata and controls

23 lines (16 loc) · 865 Bytes

Nullable

A nullable type is a type where values can either be present or absent (null).

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 None