Vitthal Korvanvitthal-korvan.hashnode.dev·Sep 29, 2024Strings in JavaScriptWhat is String? A string in programming is a sequence of characters (letters, numbers, symbols, and spaces) typically used to represent text. Strings are often enclosed in quotation marks (" " or ' '). String have some in build methods which can used...Discuss·2 likesJavaScript CoreStrings
linhbqforSRE Tribeblogs.sretribe.net·Sep 27, 2024DSL MethodsThe DSL execution engine exposes several methods to create Jenkins jobs, views, folders and config files. These methods imply the creation of a Jenkins item and the closure to the method can be used to define the item's settings. The only mandatory o...Discussdsl
Shrey Dikshantshreysblog.hashnode.dev·Sep 26, 2024Exploring String Functions in Python 🧰Introduction Python provides several built-in functions to work with strings, making it easy to manipulate, search, and transform text. In this blog, we’ll cover some of the most commonly used string functions and methods that will help you become mo...Discuss·1 likeMastering Python Strings: From Basics to Advanced SlicingMethods
Nishorgo Hasannishorgo.hashnode.dev·Sep 19, 2024Dependency Injection Made Easy to UnderstandIn software development, dependencies are like the ingredients in a recipe. Each ingredient serves a specific purpose, and without the right combination, your dish might not turn out the way you want it to. Imagine you're baking a cake. You need flou...DiscussPython
Akash Dasakashdas7781.hashnode.dev·Sep 18, 2024A Beginner’s Guide to Methods in Java :If you’re just getting started with Java, one of the key concepts you'll come across early on is methods. Methods are like little mini-programs inside your Java class that do a specific job. They help you organize your code and avoid writing the same...Discusssimple program
Saswat Palsaswatpal.hashnode.dev·Sep 10, 2024Functions/Methods in JavaA method is a block of code which only runs when it is called. To reuse the code: define the code once & use it many times Syntax <access modifier> <return type> <method name>(<parameter list>) { // method body return <value>; } Now, let'...Discuss·1 likeMethods
Kandadi Manasakandadimanasa.hashnode.dev·Sep 10, 2024Classes, Objects, and MethodsClass Syntax "class" keyword use cheskoni classes ni create chestham java lo. class ClassName{ // variables // Methods // objects } Variables Syntax ni previous articles lo discuss chesnam, go and check. Methods C language lo manam functions antam k...DiscussJava
Kandadi Manasakandadimanasa.hashnode.dev·Sep 8, 2024Overview of OOP in JavaClasses, Objects and Methods Scenario: Oka classroom "IT" lo "Teachers and Students" untaru, Manam class lo chese panlu: Attendance Sleep Eat Now, e scenario lo manam objects, methods and classes ni define chedham. Objects: Teachers and Student...b.abhinaya reddy and 1 other are discussing this2 people are discussing thisDiscuss·21 likes·35 readsOOPS
Namra Ajmaldatanerd.hashnode.dev·Aug 31, 2024Python String Methods: In-Depth Guide to String ManipulationWhat is a string? A string is a built-in data structure and one of the most frequently used data type in python. Essentially, it is a sequence of characters surrounded by single quotation marks ('hello') or double quotation marks ("hello"). string = ...DiscussProgramming Blogs
abhishek kumaraksilearntocoder.hashnode.dev·Aug 26, 2024Learn C# with OOPS Concept(Static Constructor, ways to return values by a function/method)-Part-4Static Constructor First of all let's elaborate basics about static constructor that all programmers must have:- static constructor does not have arguments or parameters. static constructor does not have return type. Due to above points static con...Discussstatic constructor