I have a question, not about the JS code obfuscation ( it's not really the subject), but for understand a JS if else notation.
When we use obfuscation tools on JS code, the generated code contains a statement like this :
(0xA6, 78.) <= 0x204 ? val : otherVal
I know the if Else statement and the reduce version. in this exemple the obfuscate tool use numbers with other hex base ( ok for this )
But the notation :
( value , other value )
Why this and for make what ?
Thanks for your help to understand this.