JSFiddle - React, Tailwind, and code Playground

by sandro_paganotti

JavaScript

function utente(nome){
    this.nome = nome;
    return this;
}

sandro = utente('Sandro');
paolo = utente('Paolo');

console.log(sandro);
console.log(sandro.nome);