This file contains 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/bash | |
# Function for password input (hidden) | |
read_password() { | |
echo -n "$1: " | |
read -s password | |
echo "" # Add a newline after input | |
echo $password | |
} |
This file contains 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
// java script is asynchronous | |
// it is not synchronous | |
// it is asynchronous | |
// it is not blocking | |
// const a = "" | |
// const a = 0 | |
// const a = {} | |
// const a = [] | |
// const a = [""] |