Skip to content

Commit 822e476

Browse files
authored
Update README.md
1 parent a39f86a commit 822e476

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@ const mang = ['Microsoft', 'apple', 'netflix', 'Google'];
3636
const result = search_in_array("app", mang);
3737
console.log(result); // ['apple']
3838

39+
40+
41+
42+
43+
44+
// Santized array Example
45+
3946
// Corrupted Data array with diff data types
4047
const my_array = [
4148
{name:'sam',age:null,isEmployed:'false'},
@@ -47,7 +54,7 @@ const my_array = [
4754
{name:'sam',age:'123',isEmployed:undefined}
4855
]
4956

50-
// Santized array Example
57+
5158

5259
// Given schema for correct data types
5360
const my_schema = {

0 commit comments

Comments
 (0)