Velhinho Posted February 28, 2022 at 02:41 PM Report Share #625490 Posted February 28, 2022 at 02:41 PM Boa tarde, tenho este situação para resolver mas estou a ter dificuldade se alguém, ,me pudesse ajudar agradecia. Citação We're going to declare a simple function for you, your task for now will be calling it three times, each time with a different value. You'll need to use the name we've given to the variable, followed by a number inside a pair of parenthesis. var double = function (x) { console.log(x * 2); }; Link to comment Share on other sites More sharing options...
francisca Posted March 3, 2022 at 01:12 PM Report Share #625506 Posted March 3, 2022 at 01:12 PM var double = function (x) { console.log(x * 2); }; double (5) double(10) double (100) 1 Report Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now