Mohit Upadhyaymohit5upadhyay.hashnode.dev·Jul 13, 2024Day 3: Operators and Expressions in JavaScriptWelcome back to our JavaScript series! Today, we'll learn about operators and expressions, which are essential to performing operations . Operators Operators are symbols that perform specific operations on variables and values. Some common types of o...1 likejs
Karuppiah Natarajankaruppiah.dev·May 7, 2024Trying out Prometheus Operator's Alertmanager and Alertmanager Config Custom ResourcesIn this post, we are going to look at how we can use Alertmanager and AlertmanagerConfig custom resource to create and manage and configure Alertmanager From https://karuppiah.dev/trying-out-prometheus-operator blog post I showed how to get started w...637 readsAlertmanager
decpkdecpk.hashnode.dev·Apr 6, 2024typeof type operator in Typescripttypeof operator is used to get type of (I'd prefer to say Shape of) operand. If you want to learn about typeof in reference to Javascript then you can visit typeof operator in javascript. Syntax of typeof operator in Typescript Typescript typeof oper...typeof
Jyotiprakash Mishrablog.jyotiprakash.org·Dec 26, 2023Know your , operator well!In C, the comma operator , serves multiple purposes. It is a versatile operator with different use cases. Here are the primary ways in which the comma operator works: Separating Statements: The comma operator is commonly used to separate multiple st...50 readsC Programmingcomma
Jyotiprakash Mishrablog.jyotiprakash.org·Dec 24, 2023What handles operations in C?Here's a comprehensive list of operators in C, along with sample code and explanations: 1. Arithmetic Operators: Addition + Subtraction - Multiplication * Division / Modulus % #include <stdio.h> int main() { int a = 10, b = 5, result; ...103 readsC Programmingrelational operators
Bartosz Szłapakblog.procode.pl·Sep 26, 2023RxJS log value pipeSometimes, instead of using debugger keyword, you'll just want to display the values in the console. When using RxJS you'll probably use quick&dirty tap(value => console.log(value)). There's nothing wrong with it, but it can be done a little nicer an...RxJS
Abhishek Dubeyiamabhishekdubey.hashnode.dev·Jun 14, 2022MongoDB setup in Kubernetes using MongoDB OperatorMongoDB is a popular NoSQL database that supports large as well as small size of datasets. Just like any other database standalone setup, MongoDB is straightforward but we have to make a replicated or shared cluster of MongoDB, and there we have cert...1 like·49 readsKubernetes
SURYA Llayruss.hashnode.dev·Jun 6, 2022Learn Conditional (Ternary) Operator in JavaScriptHello everyone, hope you are all doing well. My name is Surya L, and the aim of this blog is to teach you all about Learn Conditional (Ternary) Operator in JavaScript. Conditional (Ternary) Operator Conditional operators are also called ternary opera...112 readsJavaScriptJavaScript