-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlec11.html
More file actions
50 lines (40 loc) · 803 Bytes
/
lec11.html
File metadata and controls
50 lines (40 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
//Higher order function
// function sum(fn){
// // fn()
// console.log(fn);
// }
// sum(function inner(){
// console.log("inner");
// })
// function outer(){
// function fn(){
// console.log("heelo");
// }
// return fn
// }
// outer()
let arr=[5,6,3,"hello","hii",true,false]
function getString(arr){
let res=[]
for(let i of arr)
if(typeof i == "string")
{
res.push(i)
}
//it checks the type and
}
console.log(res);
get(arr,getString)
get(arr,numbwre)
</script>
</body>
</html>