mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-31 23:37:49 +00:00
15
index.html
15
index.html
@@ -231,6 +231,7 @@
|
||||
<li>- <a href="#isNaN">isNaN</a></li>
|
||||
<li>- <a href="#isNull">isNull</a></li>
|
||||
<li>- <a href="#isUndefined">isUndefined</a></li>
|
||||
<li>- <a href="#isObject">isObject</a></li>
|
||||
</ul>
|
||||
|
||||
<a class="toc_title" href="#utility">
|
||||
@@ -1223,7 +1224,19 @@ _.isNull(undefined);
|
||||
_.isUndefined(window.missingVariable);
|
||||
=> true
|
||||
</pre>
|
||||
|
||||
|
||||
<p id="isObject">
|
||||
<b class="header">isObject</b><code>_.isObject(variable)</code>
|
||||
<br />
|
||||
Returns <i>true</i> if <b>variable</b> is an <i>object</i>.
|
||||
</p>
|
||||
<pre>
|
||||
_.isObject({});
|
||||
=> true
|
||||
_.isObject('am I an object?');
|
||||
=> false
|
||||
</pre>
|
||||
|
||||
<h2 id="utility">Utility Functions</h2>
|
||||
|
||||
<p id="noConflict">
|
||||
|
||||
Reference in New Issue
Block a user