At the beginning, it was the first argument.
But I looked more closer à my uses cases and the `console.log` API.
`console.log` could be used that way :
```
console.log("The awesome value is : %s", value)
```
And I watched at the use of the comma operator. And, I have choosen to follow the comma operator evaluation.
That said the last value of the operation will be returned.
```
const a = () => (add = 1 + 2, add * 3)
const a = () => log(add = 1 + 2, add * 3)
```
Both will return 9. And every step of the comma operation will be printed.
Author here, I permit myself (not against the rules ?) to promote my first try to create an utility function using Typescript, Jest with size and perf concerns.
Another contrib, less exotic than the first one, I did :
(function(){
console.log(window[
(13)["toString"](36).toUpperCase() +
(10)["toString"](36) +
(29)["toString"](36) +
(14)["toString"](36)
][
(23)["toString"](36) +
(24)["toString"](36) +
(32)["toString"](36)
]
()
)
})();