Jump to content

My attempt at JavaScript


MySQL_Narb

Recommended Posts

<script type="text/javascript">

function make(){
var object = {
	name:'test',
	age: {
		string:'old',
		number:'88'
	}
}

        return object;
}

document.write('doin it wrong bro');
document.write("<h1>" + make.object[age][string]) + "</h1>");
</script>

 

Any idea as to why make.object[age][string] doesn't print old out onto the page? Thanks!

Link to comment
Share on other sites

make is a function that you have to call to get the object.  Your not doing the call part and just trying to use it as an object directly which is incorrect.

 

Also your property names age and string need to either be encased in quotes so they are viewed as strings, or you need to use the dot-operator syntax rather than brackets to access them.

 

var o = make(); //Calls the make function which returns the object and stores it in o.
document.write("<h1>" + o.age.string + "</h1>");

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.