JSFiddle - React, Tailwind, and code Playground

by Anurag Udasi

JavaScript

console.personalLog = (...parameters) => {
	for(const parameter of parameters) { // try for..in here and see the fun!
  	console.log(parameter);
  }
};

console.personalLog('i', 'am', 'trying stuff out!');