Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Ternary operator and or to set default value

  • ||
  • ?:
name = nil

ternary_name = name ? name : "default"
puts ternary_name

or_name = name || "default"
puts or_name