Functions are first–class citizens in JS, meaning that they can be passed around like any other type of data, eg, variables. http://en.wikipedia.org/wiki/First-class_function
Declared functions build in memory immediately when the program loads.
Functions are first–class citizens in JS, meaning that they can be passed around like any other type of data, eg, variables. http://en.wikipedia.org/wiki/First-class_function
Declared functions build in memory immediately when the program loads.
#!/bin/sh | |
# | |
# Japanese Kanji File Encode Converter (to UTF-8) | |
# Usage: $ sh ./enc_converter.sh "<FilePath>" | |
# <Filepath> is used for argument of "ls" command. | |
# Ex) sh ./enc_converter.sh "~/test/*.txt" | |
# Expect Output of 'file' Command | |
cp932="Non-ISO extended-ASCII text" | |
jis="ASCII text" |