Yahya GokCallback functions in JavaScriptA callback function is a function passed into another function as an argument, which is then invoked inside the outer function to complete…Aug 29, 2021Aug 29, 2021
Yahya GokScope In JavaScriptScope is the accessibility of variables, functions, and objects in some particular part of your code during runtime. In other words, scope…Aug 19, 2021Aug 19, 2021
Yahya GokPass by value and pass by reference in JavaScriptin JavaScript Arrays and Objects pass by reference. Everything else like strings, integer, number pass by value.Aug 10, 2021Aug 10, 2021
Yahya GokImperative vs Declarative in JavaScriptImperative code is telling the computer what to do in every step with details. Versus, Declarative code is what you want the results to be.Aug 3, 2021Aug 3, 2021
Yahya GokSome Properties in CSSIn this article, I will explain some properties used in CSS.Jul 30, 2021Jul 30, 2021
Yahya GokStore in vue.jsStore in Vue.js is a container and holds state. If you are familiar with React-Redux, store basically works in a similar way that you…Jul 25, 2021Jul 25, 2021
Yahya GokPages Directory in nuxt.jsNuxt.js gives us very powerful feature that we don’t have to do routing for pages. Nuxt.js does page routing for us.Jul 17, 2021Jul 17, 2021
Yahya GokFetch Hook vs Async Data in Nuxt.jsNuxt.js gives us two different way to fetch data from an Api, one is Fetch hook, the other one is Async Data.Jul 10, 2021Jul 10, 2021
Yahya GokWhat is ‘v-for’ in Vue.js ?v-for renders a list of items in vue.js, it is like using forEach in React.js, or using .map in ruby.Jul 4, 2021Jul 4, 2021
Yahya GokWhat is an Argument, What is a Parameter in Ruby ?Parameter is a keyword that we use when we define a method in Ruby. Simply, in below example; name in parentheses is a parameter…Jun 26, 2021Jun 26, 2021