JSFiddle - React, Tailwind, and code Playground

by jacobwsmith

JavaScript

console.clear();
var test = {
	bar: 'hiya'
};
function mutateObjet(obj) {
	obj.bar = 'bye';
}
// mutable
console.log(test);
mutateObjet(test);
console.log(test)