Open In App

Ruby | Array class inspect() function

Improve
Improve
Like Article
Like
Save
Share
Report

Inspect() is an Array class method which returns the all array elements.

Syntax: Array.inspect()

Parameter: Array

Return: all array elements

Example #1 :




# Ruby code for inspect() method
  
# declaring array
a = [18, 22, 33, nil, 5, 6]
  
# declaring array
b = [1, 4, 1, 1, 88, 9]
  
# declaring array
c = [18, 22, nil, nil, 50, 6]
  
# inspect
puts "inspect : #{a.inspect()}\n\n"
  
# inspect
puts "inspect : #{b.inspect()}\n\n"
  
# inspect
puts "inspect : #{c.inspect()}\n\n"


Output :

inspect : [18, 22, 33, nil, 5, 6]

inspect : [1, 4, 1, 1, 88, 9]

inspect : [18, 22, nil, nil, 50, 6]

Example #2 :




# Ruby code for inspect() method
  
# declaring array
a = ["abc", "nil", "dog"]
  
# declaring array
b = ["cow", nil, "dog"]
  
# declaring array
c = ["cat", nil, nil]
  
# inspect
puts "inspect : #{a.inspect()}\n\n"
  
# inspect
puts "inspect : #{b.inspect()}\n\n"
  
# inspect
puts "inspect : #{c.inspect()}\n\n"


Output :

inspect : ["abc", "nil", "dog"]

inspect : ["cow", nil, "dog"]

inspect : ["cat", nil, nil]


Last Updated : 07 Jan, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads