Chapter IV - The Really-Really-Serious-Method Part VIII

As we continue to delve into the mysteries of Team Dynamics, we find ourselves at a crossroads.

Our heroes, having overcome the perils of Chapter III, are now faced with the unrelenting onslaught of Chapter V.

It's a bit of a pickle, really.

Our heroes are stuck between a rock and a hard place, with no clear path to victory.

Or are they?

Subpage Links:


	// The Really-Really-Serious-Method Part VIII
	// 
	// Variables
	// 
	var hero = {
		health: 100,
		strength: 20,
	.agility: 15
	};
	
	// Methods
	// 
	var reallyReallySeriously = function() {
		return hero.strength - hero.agility;
	};
	
	// Call reallyReallySeriously() to see what happens next
	reallyReallySeriously();
	

Note: This is just a teaser for what's to come.