<html ng-app="">
<head> <!-- www.w3tr.com -->
<title>angular.isArray Örnek</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular.js">
</script>
</head>
<body bgcolor="#ccc">
<fieldset>
<legend>angular.isArray Örnek</legend>
<script>
var sourceAry = [1,2,3,4,5,6];
var str = "www.w3tr.com";
document.write(angular.isArray(sourceAry));
document.write("</br>");
document.write(angular.isArray(str));
</script>
</fieldset>
</body>
</html>
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.