VaithegiVvaithegiv.hashnode.dev·Jun 21, 2024<Simple Calculator using HTML/CSS><form> element is a container that contains different type of input elements. in this project: I used <input> and <button> as a input elements inside the <form> The elements that doesn't need closing tag is called Empty or Void elements. <input type=...Discuss·2 likesLearn Frontend with projectslivelink
Sagar Mohantykeyboard-gorilla.hashnode.dev·May 28, 2024Arrays and Slices in Go: Basic Operations and CapabilitiesIn the Go programming language, arrays and slices are fundamental data structures that offer unique ways to handle collections of data. This blog will walk you through basic operations such as insertion and deletion, as well as slicing and managing c...DiscussDSA with Godsa-with-go
Faeka Ansarifyka.hashnode.dev·Apr 6, 2024Slice Secrets in GoLangSlices are one of the most versatile and powerful data structures in Go, offering flexibility and efficiency in managing collections of data, and extremely used in literally every Go Program I have came across. However, there's more to slices than me...Discuss·1 like·55 readsgolang
Jemin Kikanijemin.hashnode.dev·Feb 28, 2024Day 5 : how many String Methods in javascript with example ?● String length ● String slice() ● String substring() ● String substr() ● String replace() ● String replaceAll() ● String toUpperCase() ● String toLowerCase() ● String concat() String Length:- ● String trim() ● String trimStart() ● String tr...DiscusspadEnd()
Shounak Khulapeshounakkhulape.hashnode.dev·Feb 21, 2024Go - SlicesA slice is defined as a continuous segment of an underlying array and it provides access to a numbered sequence of elements from that array. Slices provide access to parts of an array in sequential order. Slices are more flexible and more powerful ...DiscussGo Language basicGolang developer
Lucie Yarishlucieyarish.hashnode.dev·Feb 3, 2024JavaScript slice() MethodThe slice() method is often confused with splice(), and vice versa. In this article, we are going to take a closer look at the JavaScript slice() method with code examples. In the upcoming articles in this series, I am going to dive into splice(), to...Discuss·4 likes·92 readsJavaScriptJavaScript
Weiping Dingwpding.hashnode.dev·Sep 17, 2023Get Going: peek into sliceIn previous posts, I explored the unique design of Go error handling. This time I am moving to another part: Go slice. Similar to error handling, this data structure (essentially dynamic array) is something so common (JavaScript array, Python list et...Discussgolang
Bidhubhushan Gahanbidhubhushan.hashnode.dev·Sep 7, 2023Javascript Array.Splice vs Array.sliceArray.slice() slice() is a method of javascript array datatype that helps to get a subarray from an array. It doesn't change the original array. Syntax const arr = [1,2,3,4,5,6] const slicedArr = arr.slice(1,4) //Here the first parameter represents t...Discuss·38 readsslice
Ray Yangblog.rayspock.com·Sep 6, 2023Go Slice Copying: What Really Happens Under the Hood?In Go, variables are passed by value, which means that when we pass variables as arguments to functions, Go makes a copy of those values for the function to use. However, the behaviour of Slice can be a bit confusing at first glance, especially if we...Discuss·130 readsGo Language
Roshan Guragainroshangrg.hashnode.dev·Sep 4, 2023RTK (Mastering Slice)RTKRedux Toolkit streamlines Redux state management in React by minimizing setup overhead with createSlice, simplifying actions and reducers. It integrates thunks for async operations and DevTools for debugging, while promoting immutable updates. Thi...Discussrtk query