JSFiddle - React, Tailwind, and code Playground

by alessia_fachin

JavaScript

function hello(){
    //{nomeutente: 'Alessia'}
    //var self= this; 
    function prova(){
        // {nomeutente: 'Alessia'}
        console.log(this.nomeutente);
    }
    //diretta
    prova.call(this); //altro modo se non voglio la variabile self
}

hello.call({nomeutente:'Alessia'});