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
| var oldArray = [1,2,3,4,5,6,7,8,9,10]; | |
| // We declare our newArray which holds the .filter method, filter proceeds to grab each element in our array, | |
| // and pass them as arguments to the function which returns our result. | |
| var newArray = oldArray.filter( function(a) { | |
| return a < 6; | |
| }); |
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.selectedUser = this.users.find((user) => { | |
| return user.name === this.highlightedUsername; | |
| }); |
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
| <template> | |
| <breeze-authenticated-layout> | |
| <template #header> | |
| <h2 class="font-semibold text-xl text-gray-800 leading-tight"> | |
| Dashboard | |
| </h2> | |
| </template> | |
| <div class="py-12"> | |
| <div class="mb-6 max-w-7xl mx-auto sm:px-6 lg:px-8"> | |
| <div class="bg-white overflow-hidden shadow-sm sm:rounded-lg"> |
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
| #!/bin/sh | |
| ######################################################## | |
| # Bash script to install HeavyGari Laravel App | |
| # Written by Talha Ibne Imam | |
| ######################################################## | |
| HC='\033[0;32m' # Heading Color | |
| WC='\033[0;33m' # Warning Color | |
| NC='\033[0m' # No Color |