Skip to content

Instantly share code, notes, and snippets.

@mildocjr
Created August 10, 2018 02:55
Show Gist options
  • Select an option

  • Save mildocjr/619aebdacbf27d709ec1f27f6aaba87d to your computer and use it in GitHub Desktop.

Select an option

Save mildocjr/619aebdacbf27d709ec1f27f6aaba87d to your computer and use it in GitHub Desktop.
ternary-operators-3
var isSunShining = true
var description: String = "" // This is an empty string
if isSunShining {
description = "Yay!"
else {
description = "Aww..."
}
// Same if statement using a ternary operator
description = isSunShining ? "Yay!" : "Aww..."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment