I have just come across the javascript code
file_upload_started = progress < 100;
and I have NO idea how to read it and Google isn’t really turning much up. I’m not even sure what to call it so it’s hard to do a search.
If anyone has any information about this type of equation, that would be much appreciated.
It stores the result of the expression
progress < 100(a boolean result) to the variablefile_upload_startedSo if
progressis less than100then it will set thefile_upload_startedtotrue, otherwise tofalse