It has been asked before, but it's not high up my priority list as I feel like it doesn't actually add much, and might be a pain to implement.
JS has a built-in arguments variable:
arguments
var logger = function(){ console.log.apply(null, arguments); }
should work on Espruino just fine - no need for spread at all :)
@Gordon started
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
It has been asked before, but it's not high up my priority list as I feel like it doesn't actually add much, and might be a pain to implement.
JS has a built-in
arguments
variable:should work on Espruino just fine - no need for spread at all :)