Suppose we have a string object referenced by a variable called listing. Suppose we want a new string object that consists of the first 5 characters in listing.
a) listing.substring(0, 5)
b) listing.slice(0, 5)
c) listing.split(0, 5)
d) listing.substr(0, 5)