tiscavalcanti 0 Posted July 27, 2015 Report Share Posted July 27, 2015 (edited) I have: function val(a,z){ return a/2, z+8; } val(3,4); Put this in a Array; x = 1,5 y = 12 [x,y]; Thanks. Edited July 27, 2015 by tiscavalcanti Quote Link to post Share on other sites
Ingolme 1,020 Posted July 27, 2015 Report Share Posted July 27, 2015 You can have your function return an array, but unless you're operating a and z together in two different ways, I don't see a reason to do it. Returning both values with an array: function val(a, z) { return [ a/2, z+8 ];} A better approach: function half(x) { return x/2;}function plus8(x) { return x + 8;} 1 Quote Link to post Share on other sites
tiscavalcanti 0 Posted July 29, 2015 Author Report Share Posted July 29, 2015 You can have your function return an array, but unless you're operating a and z together in two different ways, I don't see a reason to do it. Returning both values with an array: function val(a, z) { return [ a/2, z+8 ];} A better approach: function half(x) { return x/2;}function plus8(x) { return x + 8;} Thank you! Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.