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
https://forums.phpfreaks.com/topic/265256-my-attempt-at-javascript/
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>");

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.