1208748959*[ruby]ifについて実験する

公開日: : 最終更新日:2014/02/04 未分類

記事内に広告を含む場合があります。記事内で紹介する商品を購入することで、当サイトに売り上げの一部が還元されることがあります。

if nil then …


>> if nil then puts true end
=> nil
>> unless nil then puts true end
true
=> nil

if 0 then …


>> if 0 then puts true end
true
=> nil
>> unless 0 then puts true end
=> nil

if “” then …


>> if "" then puts true end
(irb):52: warning: string literal in condition
true
=> nil
>> unless "" then puts true end
(irb):53: warning: string literal in condition
=> nil

if s then …


>> s = ""
=> ""
>> if s then puts true end
true
=> nil
>> unless s then puts true end
=> nil

関連記事

サンフランシスコのピア39にあるチャウダーズでクラムチャウダーを食す!

lolipop アップルの開発者向けイベント「WWDC2014」

ミスドのカルピスドーナツとカルピスポンデリングを食べてみた!

ミスドで期間限定のカルピスコラボ商品「カルピスドーナツ」と「カルピ

十三カレー計画で牛すじカレーネギのせを食す!(大阪・十三)

「iPhoneアプリ開発キャンプ@大阪」のランチで、十三カレー計画

大阪・難波の加寿屋 法善寺でかすうどんを食す。ランチタイムはおにぎり2個まで無料!

大阪・難波の加寿屋 法善寺 (かすうどん KASUYA)で、かす

ライブドアブログで運営していた「あきお商店」を「卵は世界である」に改名しました

少し前からライブドアブログで「あきお商店」というブログをやって

→もっと見る

PAGE TOP ↑