わかっているつもりであいまいだった基礎なので言語化しました。
条件によって処理を分けるためにifを使用する。
(使用方法:条件式にifを渡す)
ifは基本的に「trueかfalseかを判断するもの」
trueであれば、if直下の処理が実行!
falseであれば実行されない。
.ruby
if true # trueという値そのもの
puts "出力" # 実行される
end
if false # falseという値そのもの
puts "出力" # 実行されない
end
Go to list of users who liked
More than 3 years have passed since last update.
わかっているつもりであいまいだった基礎なので言語化しました。
条件によって処理を分けるためにifを使用する。
(使用方法:条件式にifを渡す)
ifは基本的に「trueかfalseかを判断するもの」
trueであれば、if直下の処理が実行!
falseであれば実行されない。
if true # trueという値そのもの
puts "出力" # 実行される
end
if false # falseという値そのもの
puts "出力" # 実行されない
end
Register as a new user and use Qiita more conveniently
Go to list of users who liked