Command Palette
Search for a command to run...
Comments
Join the discussionNo comments yet. Be the first to comment.
javascript
Named Parameters in JavaScript
What is Named Parameters Named means that when you call a function, you attach the argument to a label. Named arguments enable you to specify an argument for a parameter by matching the argument with its name rather than with its position in the para...
More from this blog
Kafka: Replications and ISR
In Apache Kafka, the replication factor refers to the number of copies (replicas) of a topic partition that are maintained across the Kafka cluster. ISR stands for In-Sync Replicas. It is the set of all replicas (including the leader replica) that ar...
Event Capturing in JavaScript
Event capturing occurs when a nested element gets clicked. The click event of its parent elements must be triggered before the click of the nested element. Event capturing is not the default behavior of Javascript Events. In vanilla javaScript we ne...
Kafka: Topics, Partition & Consumers
Concepts What is Kafka? Apache Kafka is an open-source distributed event streaming platform used by thousands of companies for high-performance data pipelines, streaming analytics, data integration, and mission-critical applications. What is Topic? K...
Microservice Communication with Kafka
Kafka with Node.js
Generator Function in JavaScript
Generator Function is used to Pause and Resume the execution of the function with its context (variable bindings) saved across re-entrances. This allows you to generate values on-the-fly, without having to generate all of the values at once. A genera...


