1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

[Ruby] Integerクラスのeven?メソッド

Posted at

学習したことのアウトプット

even?メソッド

Rubyの組み込みライブラリ
自身が偶数であれば真を返し、そうでない場合は偽を返す。

例)

10.even?    # => true
5.even?     # => false

※補足等ある場合はコメントしていただけると幸いです。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?