What do you guys prefer? And Why? And what is more readable?
public const MAX_FILE_SIZE_BYTES = 10485760; // 10 MB in Bytes
VS
public const MAX_FILE_SIZE = 10 * 1024 * 1024; // 10mb
Both ways result in the same. Feel free to share your opinion :)