Question

code 3 different ways to insert a property-value pairing into a javascript object where the object...

code 3 different ways to insert a property-value pairing into a javascript object where the object name is Seneca, the property name is coursecode and the value is WEB322

0 0
Add a comment Improve this question Transcribed image text
Answer #1

Here is the answer..

first way:

var Seneca = {};

Seneca.coursecode = "WEB322";

console.log(Seneca.coursecode);

OUTPUT:

2)

var Seneca = {};

Seneca["coursecode"] = "WEB322";

console.log(Seneca.coursecode);

OUTPUT:

3)

var Seneca = {

    "coursecode" : "WEB322",

};

console.log(Seneca.coursecode);

OUTPUT:

If you have any doubts please COMMENT...

If you understand the answer please give THUMBS UP...

Add a comment
Know the answer?
Add Answer to:
code 3 different ways to insert a property-value pairing into a javascript object where the object...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT