JSFiddle - React, Tailwind, and code Playground

JavaScript

function list(a,b,c) { 
    console.log('a: ' + a);
	console.log('b: ' + b);
	console.log('c: ' + c);    
    console.log(arguments);
}

//  Create a function with a preset leading argument
var always = list.bind(undefined, "Omni", "Present");

list("of", "good", "things");

always("something", "there", "to");

always("remind", "me");