Underscore.js _.isRegExp() Function Last Updated : 11 Jul, 2025 Comments Improve Suggest changes Like Article Like Report _.isRegExp() function: It finds whether the object passed is a regular expression or not. If the object is a regular expression then it returns true otherwise false. We can even apply operations like addition etc on the variables in which the result of _.isRegExp() is stored. Syntax: _.isRegExp(object) Parameters: It takes only one argument which is the object that needs to be checked. Return value: It returns true if the object passed is a regular expression and if not then false is returned. Examples: Passing a regular expression to the _.isRegExp() function: The _.isRegExp() function takes the element from it's parameter and starts checking if it is a regular expression or not. Since the object starts and ends with '/', therefore it is a regular expression. Hence, the result is true. html <html> <head> <script src = "https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js" > </script> </head> <body> <script type="text/javascript"> console.log(_.isRegExp(/geek/)); </script> </body> </html> Output: Passing a string to the -.isRegExp() function: In this we are passing a string to the _.isRegExp() and this can be identified as the parameter passed is inside the ' ' (quotes). Since a string is not a regular expression therefore, the output will be false. html <html> <head> <script src = "https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js" > </script> </head> <body> <script type="text/javascript"> console.log(_.isRegExp('geek')); </script> </body> </html> Output: Passing a string with '/' to _.isRegExp() function: The _.isRegExp() function takes the parameter which in this case is inside ' ', hence it is a string. Therefore, all the letters, symbols inside ' ' will behave as a string character. Hence the overall object is a string. Therefore, the output is false. html <html> <head> <script src = "https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js" > </script> </head> <body> <script type="text/javascript"> console.log(_.isRegExp('/geek/')); </script> </body> </html> Output: Applying addition operation on the _.isRegExp() function's output:In this we are storing the result of both the example 1 and 2 in the variables 'a' and 'b'. Then we are applying addition operation on both the 'a' and 'b' variables. Since 'a' is true and 'b' is false, therefore, the addition of true and false will result in 1 which is then stored in 'c' variable. html <html> <head> <script src = "https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js" > </script> </head> <body> <script type="text/javascript"> var a=_.isRegExp(/geek/); var b=_.isRegExp('geek'); var c=a+b; console.log(a, b, c); </script> </body> </html> Output: NOTE: These commands will not work in Google console or in firefox as for these additional files need to be added which they didn't have added. So, add the given links to your HTML file and then run them. The links are as follows: html <!-- Write HTML code here --> <script type="text/javascript" src = "https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js"> </script> Create Quiz Comment S Sakshi98 Follow 0 Improve S Sakshi98 Follow 0 Improve Article Tags : Misc JavaScript Web Technologies JavaScript - Underscore.js Explore JavaScript BasicsIntroduction to JavaScript4 min readVariables and Datatypes in JavaScript6 min readJavaScript Operators5 min readControl Statements in JavaScript4 min readArray & StringJavaScript Arrays7 min readJavaScript Array Methods7 min readJavaScript Strings5 min readJavaScript String Methods9 min readFunction & ObjectFunctions in JavaScript5 min readJavaScript Function Expression3 min readFunction Overloading in JavaScript4 min readObjects in JavaScript4 min readJavaScript Object Constructors4 min readOOPObject Oriented Programming in JavaScript3 min readClasses and Objects in JavaScript4 min readWhat Are Access Modifiers In JavaScript ?5 min readJavaScript Constructor Method7 min readAsynchronous JavaScriptAsynchronous JavaScript2 min readJavaScript Callbacks4 min readJavaScript Promise4 min readEvent Loop in JavaScript4 min readAsync and Await in JavaScript2 min readException HandlingJavascript Error and Exceptional Handling6 min readJavaScript Errors Throw and Try to Catch2 min readHow to create custom errors in JavaScript ?2 min readJavaScript TypeError - Invalid Array.prototype.sort argument1 min readDOMHTML DOM (Document Object Model)8 min readHow to select DOM Elements in JavaScript ?3 min readJavaScript Custom Events4 min readJavaScript addEventListener() with Examples9 min readAdvanced TopicsClosure in JavaScript4 min readJavaScript Hoisting6 min readScope of Variables in JavaScript3 min readJavaScript Higher Order Functions7 min readDebugging in JavaScript4 min read Like