Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR RUBY

how to create a method ruby

#start with 'def', name the method, add function, end with 'end'
def this_method_multiples_x_by_number_of_students
  x * number_of_students
end
# => class_name.this_method_multiples_x_by_number_of_students
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #create #method #ruby
ADD COMMENT
Topic
Name
4+8 =