Code with Yogesh
Code with Yogesh
  • Видео 45
  • Просмотров 4 515
#26 Golang Essentials: Understanding Variadic and First-Class Functions #golang
In Golang, functions are first-class citizens. This means that functions in Golang can be treated like any other variable. Specifically, this entails:
#golanguage #golang #golangtutorial
Assigning Functions to Variables: You can assign a function to a variable.
Passing Functions as Arguments: You can pass functions as arguments to other functions.
Returning Functions from Other Functions: You can return functions from other functions.
Function custom type
Closure function
Variadic function
Просмотров: 60

Видео

Unlock the Potential of Angular Signals in Your Projects | Angular 18 in Hindi #angular
Просмотров 522 часа назад
#angular #angular_developer #angulartraining #angular17 #angularSignal Source code : github.com/yyogesh/angular-new-features Angular Signals are part of Angular's reactivity model, introduced to improve the way state changes are managed and tracked within Angular applications. Signals are inspired by reactive programming principles and aim to simplify state management by making it more predicta...
#25 Golang Maps Explained: Efficient Data Management Part -3 #golang
Просмотров 857 часов назад
In Go (or Golang), a map is a built-in data type that associates keys with values. It is an unordered collection of key-value pairs where each key is unique. Maps are useful for quickly looking up data associated with a particular key. #golanguage #golang #golangtutorial
#24 Golang Maps Explained: Efficient Data Management Part -2 #golang
Просмотров 577 часов назад
In Go (or Golang), a map is a built-in data type that associates keys with values. It is an unordered collection of key-value pairs where each key is unique. Maps are useful for quickly looking up data associated with a particular key. #golanguage #golang #golangtutorial
#23 Golang Maps Explained: Efficient Data Management Part -1 #golang
Просмотров 829 часов назад
In Go (or Golang), a map is a built-in data type that associates keys with values. It is an unordered collection of key-value pairs where each key is unique. Maps are useful for quickly looking up data associated with a particular key. #golanguage #golang #golangtutorial
#22 Beginners Go Collections Mastery: 🔥 Slice & Array Challenges to Boost Your Skills 💪🧠 | #golang
Просмотров 12116 часов назад
Golang Array Slice Program : #golanguage #golang #golangtutorial Source code : github.com/yyogesh/golang-learning/tree/master/array_program Finding the maximum and minimum values in the array Reverse and Array Check if an Array is Sorted Finding the second maximum value in the array Sorting an Array of Integers Remove Duplicates from an Array Inserting an element at given index into an Slice Fi...
#21 Mastering Golang Slices 🚀: Tips, Tricks, and Practical Example | Beginners #golang
Просмотров 9321 час назад
In Go (or Golang), a slice is a data structure that provides a more powerful, flexible, and convenient way to work with sequences of elements compared to arrays. A slice is a segment of an array and allows for more dynamic and easier manipulation of collections of data. Key Features of Slices: Dynamic Size: Unlike arrays, slices can grow and shrink in size. This makes them more versatile for ha...
#20 Mastering Golang Arrays: A Comprehensive Guide | Beginners #golang
Просмотров 77День назад
In Go (Golang), an array is a fixed-size sequence of elements of the same type. Arrays in Go have a specific length, which is part of their type. This means that the size of an array cannot be changed once it is declared. Arrays in Go have a fixed length, which is part of their type. They can hold elements of the same type. They are initialized to the zero value of their element type if not exp...
Angular Zoneless: Transform Your Apps with This New Feature | Angular 18 #angular #hindi
Просмотров 88День назад
#angular #angular_developer #angulartraining Angular has always relied on Zone.js to know when something changed, and we can say that it has been the only framework that worked like this. Why use Zoneless? The main advantages to removing ZoneJS as a dependency are: Improved performance: ZoneJS uses DOM events and async tasks as indicators of when application state might have updated and subsequ...
Mastering Angular Inject Function: Boost Your Dependency Injection Skills | Angular 18 #angular
Просмотров 81День назад
In Angular, both the inject function and constructor-based dependency injection are used to retrieve dependencies, but they are used in different contexts and have different advantages. #angular #angular2 #angular_developer #angulartraining #angular17
#19 🚀 Golang Task Management Project: Real-World Application Development 🚀 #golang
Просмотров 17514 дней назад
#golanguage #golang #golangtutorial Are you ready to elevate your coding skills with Golang? In this comprehensive tutorial, we dive deep into building a powerful Task Management Project using Golang. Whether you're a beginner or an experienced developer. Golang, or Go, is a statically typed, compiled programming language designed for efficiency and scalability. Its simplicity and performance m...
#18 Unlocking Golang Generic Types: A Complete Guide #golang
Просмотров 10514 дней назад
#golanguage #coding #golang #golangtutorial #developer #develpment #beginner Golang (Go) introduced support for generics in version 1.18. Generics allow you to write flexible and reusable functions, types, and data structures that can operate on different types without sacrificing type safety. This feature is essential for creating more abstract and higher-order functions, which can lead to cle...
#17 Mastering Interfaces in Golang: A Comprehensive Guide #golang
Просмотров 9614 дней назад
#golanguage #golang #golangtutorial #golang A Golang interface is a type that specifies a set of method signatures without implementing them. In other words, an interface defines what methods a type must have but not how these methods should be implemented. www.youtube.com/@UCbWzJgrG0mmxFkWtADYV95A
#16 Golang Custom type: A Comprehensive Guide | From Basics to Advanced #golang
Просмотров 8314 дней назад
In Go (Golang), a custom type (also known as a user-defined type) allows you to define new types based on existing ones. This can be useful for creating more readable code, adding methods to primitive types, or defining types that have specific constraints or behaviors. Custom types are defined using the type keyword. #golanguage #golang #golangtutorial
#15 Mastering Golang Structs Part - 3: A Comprehensive Guide | From Basics to Advanced #golang
Просмотров 9314 дней назад
In Go, a struct is a composite data type that groups together variables under a single name. These variables are called fields. Each field has a name and a type. Structs are used to create complex data types that group different properties together. Source code: github.com/yyogesh/golang-learning Go (Golang) does not support traditional class-based inheritance as seen in languages like Java or ...
#14 Mastering Golang Structs Part - 2: A Comprehensive Guide | From Basics to Advanced #golang
Просмотров 8414 дней назад
#14 Mastering Golang Structs Part - 2: A Comprehensive Guide | From Basics to Advanced #golang
#13 Mastering Golang Structs Part - 1: A Comprehensive Guide | From Basics to Advanced #golang
Просмотров 13814 дней назад
#13 Mastering Golang Structs Part - 1: A Comprehensive Guide | From Basics to Advanced #golang
#12 Golang pointer | Is it similar to c and c++ pointers? | Why Golang has pointer? #golang
Просмотров 11614 дней назад
#12 Golang pointer | Is it similar to c and c pointers? | Why Golang has pointer? #golang
Part - 11 : Golang Packages | How to download third party packages | Golang module file #golang
Просмотров 10421 день назад
Part - 11 : Golang Packages | How to download third party packages | Golang module file #golang
Part - 10 Golang file handling | How to read and write in a file #golang
Просмотров 11921 день назад
Part - 10 Golang file handling | How to read and write in a file #golang
How to validate angular template driven form? | Step by step validate angular form | #angular
Просмотров 7221 день назад
How to validate angular template driven form? | Step by step validate angular form | #angular
Angular basic of form | Template driven form | How to bind angular form? | #angular
Просмотров 8021 день назад
Angular basic of form | Template driven form | How to bind angular form? | #angular
How to build Mock Rest API | JSON-SERVER #angular
Просмотров 6821 день назад
How to build Mock Rest API | JSON-SERVER #angular
Part - 9 How to handle error in Golang | Is it true Golang does not have try and catch? #golang
Просмотров 12521 день назад
Part - 9 How to handle error in Golang | Is it true Golang does not have try and catch? #golang
Part - 8 Golang step by step game : Guess the number | Golang beginner practice projects #golang
Просмотров 10221 день назад
Part - 8 Golang step by step game : Guess the number | Golang beginner practice projects #golang
Designing Robust Angular Project Architecture for Your Next App | Best Practices & Tips #angular
Просмотров 162Месяц назад
Designing Robust Angular Project Architecture for Your Next App | Best Practices & Tips #angular
Part - 7 What is anonymous and closure function in Golang? | How can we call it without name?
Просмотров 145Месяц назад
Part - 7 What is anonymous and closure function in Golang? | How can we call it without name?
Part- 6 : Golang Step by Step | Function | Multiple, Named return | Blank Identifier #golang
Просмотров 112Месяц назад
Part- 6 : Golang Step by Step | Function | Multiple, Named return | Blank Identifier #golang
Part -5: Golang String function | Assignment | Hindi #golang
Просмотров 126Месяц назад
Part -5: Golang String function | Assignment | Hindi #golang
Angular New Control Statement | Angular 18 | If, For and Switch example step by step | #angular
Просмотров 116Месяц назад
Angular New Control Statement | Angular 18 | If, For and Switch example step by step | #angular

Комментарии

  • @improving_cow
    @improving_cow 6 дней назад

    Please continue making this series

    • @ysquaresolutions
      @ysquaresolutions 6 дней назад

      Yes, in next video we will make a challenging game. Then concurrency and so on.

  • @925082
    @925082 6 дней назад

    Sir i was waiting for this only. It will help a lot in interview. Yesterday i went for interview 1st round passed. Finger crossed soon i will also become Go programmer 😇

    • @ysquaresolutions
      @ysquaresolutions 6 дней назад

      Sure you will become i will add some rest API video also

  • @925082
    @925082 10 дней назад

    Thanks sir it is amazing golang video series. I am following from starting. Please add some interview level coding question.

  • @foodwithpoonam4222
    @foodwithpoonam4222 15 дней назад

    👍

  • @ysquaresolutions
    @ysquaresolutions Месяц назад

    github.com/yyogesh/angular-new-condition-statement

  • @ysquaresolutions
    @ysquaresolutions Месяц назад

    x int = 5