Basics Flashcards
When escaping quotes what symbol is used and where does it go?
E.g.
‘The man said, ‘Hi there!’’
Input backslash () BEFORE the character you want to escape
# with single quotes and escaping 'The man said, \'Hi there!\''
When would you make a ruby symbol?
how do you make a ruby symbol?
when you want to reference something like a string but don’t ever intend to print it to the screen or change it.
:variable_name
what method checks if something is a nil or not?
.nil?
E.g.
“Hello, World”.nil?
=> false
when nil is used in an if statement, what is nil treated as?
E.g.
if nil
…
end
false
is false the same as nil?
no. they are not equivalent
false == nil
=> false
what is the modulo operator?
Is it the same a division?
%
No. It returns the remainder of a division operation
what happens when you try to divide integers that don’t divide evenly?
15 / 4
an integer is returned
15 / 4
=> 3
how would you get a more accurate calculation of this division problem?
15 / 4
use floats
15.0 / 4
=> 3.75
can use the == operator be used to compare strings?
yes
‘foo’ == ‘foo’
=> true
‘foo’ == ‘bar’
=> false
what operator is used in String Concatenation?
the + operator
‘foo’ + ‘bar’
=> “foobar”
what is this called?
=>
a hash rocket
what is a ruby expression?
anything that can be evaluated
Pretty much everything you write in Ruby is an expression.
An expression in Ruby always returns something, even
if that’s an error message or nil
Expressions do something, but they also return something.
when do you define a constant variable?
When you want to represent a value that will not change in your Ruby program