List of questions
Related questions
Question 134 - Certified JavaScript Developer I discussion
Refer to the code below:
let o = {
get js() {
let city1 = String("st. Louis");
let city2 = String(" New York");
return {
firstCity: city1.toLowerCase(),
secondCity: city2.toLowerCase(),
What value can a developer expect when referencing o.js.secondCity?
A.
Undefined
B.
' new york '
C.
' New York '
D.
An error
Your answer:
0 comments
Sorted by
Leave a comment first