JSFiddle - React, Tailwind, and code Playground

by João Vitor Scheuermann

JavaScript

function teste3 (data, callback) {
		
		callback.call(data)      
      
}

teste3({
	teste: 'AAAAA'
}, () => {
	console.log(this.teste)

})