15 lines
226 B
HTML
15 lines
226 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<script src="https://cdn.jsdelivr.net/npm/underscore@1.13.1/underscore-umd-min.js
|
|
"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<script>
|
|
_.each([1, 2, 3], alert);
|
|
</script>
|
|
</body>
|
|
|
|
</html> |