![]() |
gosh darn curly brackets screwing up all my stuff.
|
I really like this. But I can never really get into it for more than a few weeks. I'll just drop it one day. I do that with a lot of things though.
|
I need a bit of assistance with the JavaScript tutorial. If anyone could help me, I would be grateful! These are the instructions:
You are a creature of habit. Every week you buy 5 oranges. But orange prices keep changing! 1. You want to declare a function that calculates the cost of buying 5 oranges. 2. You then want to calculate the cost of the 5 all together. 3. Write a function that does this called orangeCost(). 4. It should take a parameter that is the cost of an orange, and multiply it by 5. 5. It should log the result of the multiplication to the console. 6. Call the function where oranges each cost 5 dollars. -----this is what I coded so far --- var orangeCost = function (orangeCost) { var price = number * 5 } console.log(price = 4) |
Quote:
--- try this; var orangeCost = function (price){ var cost = price * 5; return (cost); }; orangeCost(5); |
|
Quote:
var orangeCost = function (price) { console.log(orange * 5); }; orangeCost(); |
It worked, thanks iDylan!
|
Quote:
|
Quote:
|
Quote:
var orange = 5; var orangeCost = function (price) { console.log(orange * price); }; orangeCost(); I thought the point of it was that the price is always changing, hence why the function takes a parameter for the price. |
Quote:
|
var myFunction = function (Parameter)
Is the parameter a variable? |
The parameter is the variable you input into the function.
|
Quote:
Quote:
PHP Code:
|
Quote:
Quote:
|
All times are GMT. The time now is 02:06 PM. |
Powered by vBulletin/Copyright ©2000 - 2025, vBulletin Solutions Inc.