Dinesh Kumar Kblog.dineshcloud.in·Sep 21, 2024Installing DNS Server on Ubuntu 22.04 with BINDDomain Name System (DNS) is a critical service for the internet that translates human-friendly domain names (like www.example.com) into IP addresses (like 192.168.1.1) that computers use to communicate. In this guide, we’ll walk through setting up a ...DiscussLinuxLinux
Engr. Animashaun Fisayo Michaelfmanimashaun.hashnode.dev·Jul 12, 2024Understanding `call()`, `apply()`, and `bind()` Methods in JavaScriptJavaScript provides several methods to control the this context in functions, object methods, and event handlers. The most common methods are call(), apply, and bind(). In this blog, we'll explore these methods with practical examples. call() Method ...DiscussJavaScript
Yashraj Singh Sisodiyatheyashsisodiya.hashnode.dev·Feb 13, 2024Day 18: Docker for DevOps EngineersDocker-Volume. In the world of containerization, Docker has become a staple tool for building, shipping, and running applications. However, one common challenge that Docker users face is managing data persistence within containers. When a Docker cont...Discuss·10 likes·40 readsdocker bind
Ramdas Hedgapureblog.hramdas.in·Jan 27, 2024Use of call, apply, and bind in JavaScriptIn JavaScript, call, apply, and bind are methods used to manipulate the this value inside a function. call: The call method is used to invoke a function with a specified this value and individual arguments passed directly. javascriptCopy codefuncti...Discuss·1 likecall
Mikeydraken.hashnode.dev·Dec 26, 2023Understand "THIS" keyword in JavaScript"this" Keyword in JavaScript JavaScript, the language that powers the interactivity on the web, can be both fascinating and tricky. One concept that often leaves developers scratching their heads is the mysterious "this" keyword. Fear not, fellow cod...Discussthis keyword
Ojas Elawadhiojaselawadhi.hashnode.dev·Nov 20, 2023Call, Apply, and BindHey code explorers! Today, let's uncover some magical powers in JavaScript: Call, Apply, and Bind. Think of them as your code wizards, each with a special trick up its sleeve. Picture yourself in a coding wizardry school, and these tricks are here to...Discusscall
Harsh Ankurharshankur.hashnode.dev·Dec 15, 2022[Typescript OOP 2/3] Using "this"this is perhaps the most used keyword in Object Oriented Programming (OOP) model. You see, this model is based on the premise that each and everything we do on our code can be classified as objects having custom properties of their own. In fact, even...Discuss·45 readsoop
Joel Ojerindejor-el.hashnode.dev·Sep 19, 2022"This" Keyword.TABLE OF CONTENTS Introduction Methods to configure the 'this' keyword (Call, Apply , and Bind) Introduction: In this article, we are going to see what the this keyword is and why it is important to know how to configure it. Let us get started The ...Discuss·1 like·46 readsthis keyword