null coalescing

$a >= $b

Greater than or equal

Tags
3 >= 2; // true
3 >= 3; // true

// This comparison uses loose type checks and juggles types:
2 >= 2.0; // true
2 >= '2'; // true

 1.0+