facebook twitter hatena line email

Ruby/if

提供: 初心者エンジニアの簡易メモ
2017年11月17日 (金) 09:13時点におけるAdmin (トーク | 投稿記録)による版

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索
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なし'