Tag: type

Find files of a specific mime-type

Use this command to find files of a given mime-type. In this example, we are looking for video files… find…

File Command

Find the contents of a file using this commande file filename.txt

Dynamic/Static/Strong/Weak Types

A dynamically typed language is a language where the type of a variable can be altered at any time. (It…

Object or Array

Find whether the given variable is an object,or is an Array? function isArray(testObject) { return testObject && !(testObject.propertyIsEnumerable(‘length’)) && typeof…