Gekko Wrldblog.gekkowrld.me·Nov 4, 2023Functions in CWhat is a function A function can be defined as a unit of related lines of code. These lines are supposed to do a particular task. Functions are a major part of programming. In our case, we'll be talking about functions in the C programming labguage....DiscussC
Supreet Vatssupreet.hashnode.dev·Sep 2, 2023Commonly Used Built-in JavaScript FunctionThe Most Common Built-In JavaScript Functions for Beginners JavaScript is a powerful programming language that can be used to create interactive web pages, mobile apps, and more. One of the things that makes JavaScript so versatile is its large libra...DiscussJavaScript
Saurabh Kumarblog.saurabhslab.com·Aug 13, 2023Function in cFunction in C: In C language, a Function is a group or block of statements that repeat together to perform tasks. Generally, if we have to repeat the same kind of tasks multiple times then we use the function instant of writing those codes again & ag...DiscussC
Abbas Roholaminabbasroholamin.hashnode.dev·Jul 4, 2023Pure Function in JavaScriptIn JavaScript, a pure function is a function that always returns the same output for the same input, and does not modify any external state or variables outside of its scope. Here's an example of a pure function: function add(a, b) { return a + b; ...Discuss·30 readsJavaScript
codewithartcodewithart.hashnode.dev·Jun 27, 2023Day 5👨💻🔥, Exploring Functions in JavaScript: Unleashing the Power of ReusabilityWelcome, young programmers. Functions are like superheroes in the realm of JavaScript, performing specialized jobs. They encapsulate code blocks, allowing us to reuse and organize our code more efficiently. In this blog article, we'll delve into the ...Discuss·1 like·41 readsJavascript Seriesfunctions
Parvathi Somasundaramcodegallery.hashnode.dev·Jun 2, 2023round() in pythonThe round() function is used for rounding off numbers up to a specified number of digits after the decimal point. Syntax: round(number, digits) number - the number to be rounded. It is a required parameter. digits - the number of decimals to use when...Discuss·51 readsPython
Swastik Patropatroswastik.hashnode.dev·Feb 16, 2023Why does a function returns undefined when called?When a function is called, it always returns a value. Before understanding why a function returns undefined, let's understand what is undefined. What is undefined? undefined is a special primitive value of Undefined type in JavaScript. In Undefined t...Anand Baraik and 2 others are discussing this3 people are discussing thisDiscuss·22 likes·287 readsfunction
Ravikant Kumarravikntkr.hashnode.dev·Jan 9, 2023What is prototype and prototype chaining in JavaScript?When I was using console.log() for an object in the browser console, that is when I first encountered the word “prototype” in JavaScript. Prototype A prototype is an object associated with every function and object by default in JavaScript. The func...Discuss·2 likes·115 readsJavaScript
Enrique Redondo Cortésenr.hashnode.dev·Jan 1, 2023Working with SQL's IN() instruction in PHPHello! I wanted to share how I managed to automatize queries in SQL which used the IN() instruction with PHP. The problem A very common situation consists of an array in PHP in which I have a list of things I want to use to filter my query's results....Discuss·78 readsPHP
Saumyapurevirtualfunction.hashnode.dev·Dec 15, 2022Pure Virtual FunctionWhat is Meant by Pure Virtual Function in C++? A pure virtual function in c++ is a virtual function for which we do not have an implementation. We do not write any functionality in it, instead, we only declare this function. A pure virtual function d...Discusswriting