This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // This function will sort the records by age desc | |
| function sortByAgeDesc($arrayOfObjects) { | |
| usort($arrayOfObjects, function($a, $b) { | |
| return $b['age'] <=> $a['age']; | |
| }); | |
| return $arrayOfObjects; | |
| } | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function CalculateVehicles($countOfPassengers){ | |
| return ceil($countOfPassengers/5); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| setTimeout(function(){ | |
| alert('Pakistan Zindabad'); | |
| }, 3000) |