Parameters and the Spread Operator

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.6.15/browser.js"></script>
<script type="text/babel">
function print(...args) {
 console.log(args);
}
print('a', 'b');
</script>