OCOmkar Chaskarinomkarchaskar.hashnode.dev·Jun 10, 2022 · 2 min readGo through arrays in JavaScript (Part III)Hey guys , welcome to Omkar's blogs . Today we talk about some more array methods. Here are some array methods - reduce() filter() reduce() The reducer() method execute a reducer function on each element of an array to return single output value. ...00
OCOmkar Chaskarinomkarchaskar.hashnode.dev·Jun 10, 2022 · 5 min readGo through arrays in JavaScript (Part II)Hey guys , welcome to Omkar's blogs . Today we talk about some more array methods. Here are some array methods - lastIndexOf() indexOf() findIndex() reverse() sort() fill() find() includes() lastIndexOf() The lastIndexof() method returns the ind...00
OCOmkar Chaskarinomkarchaskar.hashnode.dev·Jun 10, 2022 · 4 min readGo through arrays in JavaScript (Part I)Let's talk about arrays in javascript . Arrays are a special type of objects. The typeof operator in JavaScript returns "object" for arrays. But, JavaScript arrays are best described as arrays. Arrays use numbers to access its "elements". const frui...00
OCOmkar Chaskarinomkarchaskar.hashnode.dev·Aug 15, 2021 · 3 min readResources to learn frontend developmentneog.camp neog.camp is one of my favorite find . There learning patterns are divided into two parts . 1st part is level zero - where we learn from basic of Html , Css ,Javascript , ReactJs , git , github and web hosting . Level zero is absolutely fre...00
OCOmkar Chaskarinomkarchaskar.hashnode.dev·Aug 14, 2021 · 4 min readLet's build Stock Purchase Profit or Loss calculator with VanillaJs.Let's go Folks , actually this project is one of the neog.camp level zero project. That I enjoy . So here we go. Html setup <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edg...00