ruby is numeric code example
Example 1: ruby is int
1.is_a? Integer
=> true
"[email protected]".is_a? Integer
=> false
nil.is_a? Integer
=> false
Example 2: ruby test is number
12.is_a? Numeric
1.is_a? Integer
=> true
"[email protected]".is_a? Integer
=> false
nil.is_a? Integer
=> false
12.is_a? Numeric