URL: http://github.com/javascript-tutorial/es.javascript.info/pull/427.diff
pt the data, e.g. `gotWeather`. +1. Primero, adelantándonos, creamos una función global para aceptar los datos, por ejemplo: `gotWeather`. ```js - // 1. Declare the function to process the weather data + // 1. Se declara la función para procesar los datos del tiempo function gotWeather({ temperature, humidity }) { alert(`temperature: ${temperature}, humidity: ${humidity}`); } ``` -2. Then we make a `