「Ruby/if」の版間の差分
提供: 初心者エンジニアの簡易メモ
行8: | 行8: | ||
==nil判定== | ==nil判定== | ||
if id.nil? then | if id.nil? then | ||
+ | |||
+ | ==一行if== | ||
+ | title = !@title.nil? ? 'titleあり' : 'titleなし' |
2017年11月17日 (金) 09:13時点における最新版
name = "taro" if name == "taro" then elsif name == "jiro" then elsif name == "saburo" then else end
nil判定
if id.nil? then
一行if
title = !@title.nil? ? 'titleあり' : 'titleなし'