Skip to content

Commit b09f87c

Browse files
fill array method.
1 parent 1691efc commit b09f87c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Diff for: 03 - Arrary/Methods/17_fill.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
const name = ["ram", "shyam", "hari", "sita", "gita"];
2+
3+
console.log(name);
4+
name.fill("ramm");
5+
console.log(name);

0 commit comments

Comments
 (0)