importance: 5 --- # Comparisons What will be the result for these expressions? ```js no-beautify 5 > 4 "apple" > "pineapple" "2" > "12" undefined == null undefined === null null == "\n0\n" null === +"\n0\n" ```