Javascript Course


The function presented below can be used to get the type of a JavaScript variable, and also, to check if a variable is of a certain type.
Here's the function:

function checkType(obj, type) {
 // coursesweb.net/
 // if type not specified (null), returns a string with the object (obj) type
 if(type == null) return obj.constructor.toString().split(' ')[1].replace(/\(\)/g,'').toLowerCase();
 else {
 //returns true if is it is type, else, false
 if (obj.constructor.toString().match(new RegExp(type, 'i', 'g'))) return true;
 else return false;
 }
}

The function has two parameters: "obj", for the variable (or object) you want to check, and "type", which is a string with the name of the type to test.
If the type of "obj" is the name specified in the "type" parameter, the function returns True, otherwise, returns False.
If no argument specified for "type", the function returns a string with the type of "obj".

Here are some examples.

Get variable type

To get the "obj" type, the second argument ("type") no need to be specified.

// function to check /get obj type
function checkType(obj, type) {
 // if type not specified (null), returns a string with the object (obj) type
 if(type == null) return obj.constructor.toString().split(' ')[1].replace(/\(\)/g,'').toLowerCase();
 else {
 // returns true if is it is type, else, false
 if (obj.constructor.toString().match(new RegExp(type, 'i', 'g'))) return true;
 else return false;
 }
}

var str = 'a string';
var num = 78.5;
var arr = new Array();
var obj = new Object();
var json_array = [7, 8, 'abc'];
var json_object = {'ab': 'xyz', 'arr': [1, 2]};

// display in console the type of each variable created above
console.log( checkType(str) ); // string
console.log( checkType(num) ); // number
console.log( checkType(arr) ); // array
console.log( checkType(obj) ); // object
console.log( checkType(json_array) ); // array
console.log( checkType(json_object) ); // object
- The function returns the type of 'obj' in lowercase string, so, to check the type of a variable, just add for the "type" argument a string with the name of type you want to check.

Check variable type

// function to check /get obj type
function checkType(obj, type) {
 // if type not specified (null), returns a string with the object (obj) type
 if(type == null) return obj.constructor.toString().split(' ')[1].replace(/\(\)/g,'').toLowerCase();
 else {
 // returns true if is it is type, else, false
 if (obj.constructor.toString().match(new RegExp(type, 'i', 'g'))) return true;
 else return false;
 }
}

var str = 'a string';
var num = 78.5;
var arr = new Array();
var obj = new Object();
var json_array = [7, 8, 'abc'];
var json_object = {'ab': 'xyz', 'arr': [1, 2]};

// display console.log with true, or false
console.log( checkType(str, 'string') ); // true
console.log( checkType(num, 'number') ); // true
console.log( checkType(arr, 'array') ); // true
console.log( checkType(obj, 'object') ); // true
console.log( checkType(json_array, 'array') ); // true
console.log( checkType(json_object, 'array') ); // false
Another example, if a variable, "arr" is Array, it writes in page the first item.
// function to check /get obj type
function checkType(obj, type) {
 // coursesweb.net/
 // if type not specified (null), returns a string with the object (obj) type
 if(type == null) return obj.constructor.toString().split(' ')[1].replace(/\(\)/g,'').toLowerCase();
 else {
 // returns true if is it is type, else, false
 if (obj.constructor.toString().match(new RegExp(type, 'i', 'g'))) return true;
 else return false;
 }
}

var arr = ['coursesweb.net', 'javascript', 'course'];

// if arr is Array, writes the first item
if(checkType(arr, 'array')) {
 document.write(arr[0]);
}

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which tag is a block element?
<div> <img> <span>
<div>Web Programming and Development</div>
Which CSS code displays the text underlined?
font-style: italic; text-decoration: underline; font-weight: 500;
h2 {
  text-decoration: underline;
}
Click on the JavaScript function that can access other function after a specified time.
insertBefore() setTimeout() querySelector()
function someFunction() { alert("CoursesWeb.net"); }
setTimeout("someFunction()", 2000);
Click on the instruction that returns the number of items of a multidimensional array in PHP.
count($array) count($array, 1) strlen()
$food =["fruits" =>["banana", "apple"), "veggie" =>["collard", "pea"));
$nr_food = count($food, 1);
echo $nr_food;       // 6
Get and Check variable type in JavaScript

Last accessed pages

  1. Subclass with extends and Inheritance (1035)
  2. Simple Flash animation, Save, Export (1937)
  3. PHP XML DOM (1953)
  4. Using fadeIn and fadeOut (1574)
  5. Rotate HTML objects, Div, Span, images with jQuery (7993)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (324)
  2. Read Excel file data in PHP - PhpExcelReader (118)
  3. The Four Agreements (97)
  4. PHP Unzipper - Extract Zip, Rar Archives (94)
  5. The Mastery of Love (87)
Chat
Chat or leave a message for the other users
Full screenInchide