

Osäker på var
börja?
Track
Certifikat
Full-Stack .NET Developer Journey
4.8+
★★★★★
★★★★★
129 omdömen
Intermediate
Learn how to create your own products and applications using one of the most popular and widely used programming languages, C#. In combination with the popular . Visa mer
C#
SQL
HTML/CSS
JavaScript
React
Boost your Tech Skills!
with up to 55% off
What you'll get with our subscription:
Access to 85+ top-rated courses
AI-driven Learning
Workspaces for practicing your skills
Personalized study tracks
Certificates of completion
Training 2 or more people?
Get your team access to Codefinity courses anytime, anywhere.
Try Codefinity TeamsWhat you will learn
- Explore the fundamentals of C# including data types, control structures, loops, arrays, and methods.
- Develop an understanding of C# syntax and how to display output on the screen.
- Integrate basic and complex expressions using operators, and make decisions with if, else, and switch statements.
- Work with different data types such as integers, floating points, booleans, characters, and strings, understanding their applications and management.
- 528 chapters
- 63 hours
- 555 tasks
Trusted by employees of leading companies
Learning track content
Module 1 / C# Basics
In this section we will get an introduction to C#. Moreover, we will also learn some basic elements of the C# language.
- Why C#?Förhandsgranska
- C# SyntaxFörhandsgranska
- Displaying OutputFörhandsgranska
- Challenge: Outputting a TriangleFörhandsgranska
- CommentsFörhandsgranska
- Challenge: CommentsFörhandsgranska
- VariablesFörhandsgranska
- IdentifiersFörhandsgranska
- Challenge: Variable DeclarationFörhandsgranska
- Basic Operators & ExpressionsFörhandsgranska
- Challenge: OperatorsFörhandsgranska
In any programming language we have to deal with different types of data. In this section we will learn about that.
- Integer Data TypesFörhandsgranska
- Challenge: Declaring Explicitly Typed VariablesFörhandsgranska
- Floating-Point and DoubleFörhandsgranska
- BooleansFörhandsgranska
- CharacterFörhandsgranska
- StringFörhandsgranska
- Strings ChallengeFörhandsgranska
- Basic String FormattingFörhandsgranska
- Challenge: String FormattingFörhandsgranska
- Declaring ConstantsFörhandsgranska
- Basic Type CastingFörhandsgranska
- Type Casting PracticeFörhandsgranska
- Basic Type ConversionFörhandsgranska
- Basic Coding PracticeFörhandsgranska
In this section we will learn about features of C# that help us control the flow of the program such as executing pieces of code based on conditions.
- Comparison OperatorsFörhandsgranska
- Logical OperatorsFörhandsgranska
- Challenge: OperatorsFörhandsgranska
- Order of OperationsFörhandsgranska
- If StatementFörhandsgranska
- Challenge: if ConditionFörhandsgranska
- else KeywordFörhandsgranska
- Challenge: else KeywordFörhandsgranska
- if-else ChainFörhandsgranska
- Challenge: if, else-if, elseFörhandsgranska
- switch StatementFörhandsgranska
- Challenge: SwitchFörhandsgranska
In this section we will learn about how to deal with repetitive tasks in programming.
Arrays are an important part of any programming language as they let us group together and manipulate a large amount of similar data. In this section we will learn about Arrays and how to use them for practical applications.
In this section we will learn about one of of the most widely used and essential features of C# called Methods. We will also explore its uses through creative practice tasks.
- What are Methods?Förhandsgranska
- Creating and Calling MethodsFörhandsgranska
- Challenge: Methods CreationFörhandsgranska
- Method ParametersFörhandsgranska
- Challenge: Method with ParametersFörhandsgranska
- Method Return ValuesFörhandsgranska
- Challenge: Return ValuesFörhandsgranska
- Local & Global ScopesFörhandsgranska
- Challenge: ScopesFörhandsgranska
- What's Next?Förhandsgranska
Module 2 / C# Beyond Basics
In this section we will learn data structures like Lists and Dictionaries. We will also learn how to read and write files. In the end we will look at how to deal with unexpected errors which can occur during the program's execution.
- What are Lists?Förhandsgranska
- Practicing List DeclarationFörhandsgranska
- List MethodsFörhandsgranska
- What are Dictionaries?Förhandsgranska
- Practicing DictionariesFörhandsgranska
- Reading Files using StreamReaderFörhandsgranska
- Reading Files using File MethodsFörhandsgranska
- Writing FilesFörhandsgranska
- Error HandlingFörhandsgranska
- Practicing Error HandlingFörhandsgranska
In this section we will learn about some more advanced structures for storing data, namely Structs and Enumerators. We will learn how to use them and we will look at some practice examples as well.
- What are Structs?Förhandsgranska
- Defining & Using a StructureFörhandsgranska
- Practicing StructsFörhandsgranska
- Structs with Other Data StructuresFörhandsgranska
- Struct MethodsFörhandsgranska
- Correctly Accessing Fields in Struct MethodsFörhandsgranska
- Practicing MethodsFörhandsgranska
- Struct ConstructorsFörhandsgranska
- Practicing ConstructorsFörhandsgranska
- EnumeratorsFörhandsgranska
- Practicing EnumeratorFörhandsgranska
In this section, we will learn what Object-Oriented Programming (OOP) is and how we can create programs that use the concept of OOP. We will also practice this concept with many hands-on tasks that are fun to solve.
- What is Object-Oriented Programming?Förhandsgranska
- Defining ClassesFörhandsgranska
- Practice: Creating ClassesFörhandsgranska
- Class ObjectsFörhandsgranska
- Class Objects vs Struct ObjectsFörhandsgranska
- Practice: ObjectsFörhandsgranska
- Class MethodsFörhandsgranska
- Practice: MethodsFörhandsgranska
- Class ConstructorsFörhandsgranska
- Practice: ConstructorsFörhandsgranska
In this section, we delve deeper into the essentials of Object-Oriented Programming (OOP). We explore advanced topics to enhance your understanding and proficiency in OOP. From managing object lifecycles through destructors to refining class structures with access modifiers, and harnessing the power of derived classes and method overloading, this section equips you with the knowledge and practical skills needed to design robust and flexible object-oriented systems.
This will be a detailed chapter in which we will dive deep into the main principles of Object-Oriented Programming (OOP). We will also look at many practical applications and hands-on examples of these principles to understand them better. In this section we will revise some of the concepts from the previous section in a bit more detail and combine the concepts together to understand it more thoroughly.
- What are the Principles of OOP?Förhandsgranska
- InheritanceFörhandsgranska
- Practicing InheritanceFörhandsgranska
- PolymorphismFörhandsgranska
- Practicing PolymorphismFörhandsgranska
- EncapsulationFörhandsgranska
- Encapsulation PracticeFörhandsgranska
- AbstractionFörhandsgranska
- Abstraction PracticeFörhandsgranska
- What's Next?Förhandsgranska
Module 3 / Introduction to SQL
In this section, we will learn how to use the SQL SELECT statement to get a single table column, multiple table columns, and all table columns. We will also find out how to return unique values.
- Retrieving Individual ColumnsFörhandsgranska
- Retrieving Multiple ColumnsFörhandsgranska
- Retrieving All ColumnsFörhandsgranska
- Retrieving Distinct RowsFörhandsgranska
- Limiting ResultsFörhandsgranska
- Challenge: Find the Population of the CountriesFörhandsgranska
- Challenge: Find All CountriesFörhandsgranska
- Challenge: Find All Countries With Their IDsFörhandsgranska
- Challenge: Find Country CapitalsFörhandsgranska
- Challenge: Find the Regions in Which All Countries Are LocatedFörhandsgranska
In this section, we’ll explore how to organize and prioritize the data returned by a query using the ORDER BY clause. Placed at the end of a SELECT statement, this clause lets you sort your results by one or multiple columns, either in ascending or descending order, enabling more meaningful and easily interpretable data output.
- Sorting DataFörhandsgranska
- Challenge: Population SortFörhandsgranska
- Sorting by Multiple ColumnsFörhandsgranska
- Challenge: Dual-Sort QueryFörhandsgranska
- Specifying Sort DirectionFörhandsgranska
- Challenge: Sort the Countries by Region and CapitalFörhandsgranska
- Challenge: Sort Capitals in Descending OrderFörhandsgranska
- Challenge: Sort Countries in Ascending OrderFörhandsgranska
- Challenge: Find Countries, Their IDs, and Their PopulationsFörhandsgranska
- Challenge: Find Countries, IDs, Populations, Regions, and Sort ThemFörhandsgranska
- Challenge: Find All Continents and Sort Them in Ascending OrderFörhandsgranska
In this section, we will learn how to filter returned data using the SELECT statement's WHERE clause. We will learn how to test for equality, inequality, more and less significant than value ranges, and NULL values.
In this section, we’ll explore how to refine your search conditions by combining WHERE clauses with the AND and OR operators. We’ll also cover how the NOT operator can be used to exclude certain results.
In this section, we will learn what the SQL aggregate functions are and how to use them to summarize table data.
- The AVG() FunctionFörhandsgranska
- Challenge: Surface Area SelectionFörhandsgranska
- The COUNT() FunctionFörhandsgranska
- Challenge: Continental CountFörhandsgranska
- The MAX() FunctionFörhandsgranska
- The MIN() FunctionFörhandsgranska
- Challenge: Large Surface Area AverageFörhandsgranska
- The SUM() FunctionFörhandsgranska
Module 4 / Intermediate SQL
In this section, you will learn how to group and manage data effectively. We will introduce the GROUP BY operator for grouping data. Additionally, you will learn how to filter grouped data using the HAVING operator.
- GROUP BY ClauseFörhandsgranska
- Order of StatementsFörhandsgranska
- Challenge: Total Ride Time for Each Subway LineFörhandsgranska
- Average Student's Grade ChallengeFörhandsgranska
- Searching for the Top Math Students ChallengeFörhandsgranska
- HAVING ClauseFörhandsgranska
- Several Aggregate Functions in the QueryFörhandsgranska
- More Complex FilteringFörhandsgranska
You will learn about nested subqueries, how to create them, and how to use them effectively.
Here, you will learn how to combine multiple tables, allowing you to work with a unified table and simplify query creation.
- JOIN 2 TablesFörhandsgranska
- Challenge: Get Category By Product PriceFörhandsgranska
- Challenge: Get Minimum Price By CategoryFörhandsgranska
- Challenge: Get Product Amount By CategoryFörhandsgranska
- LEFT, RIGHT and INNER JOINsFörhandsgranska
- Challenge: Table JoinFörhandsgranska
- Challenge: FULL JOIN UsageFörhandsgranska
Learn the fundamentals of Data Definition Language (DDL) and Data Manipulation Language (DML) in SQL, including how to create, modify, and delete database objects, as well as how to insert, update, and delete data within tables.
Module 5 / Introduction to .NET with C#
In this section we will learn about what is .NET, how to setup the development environment and how to start making some console apps. Apart from that we will also learn how to take input from the user in the console for making interactive applications.
- What is the .NET Platform exactly?Förhandsgranska
- Creating a Console ApplicationFörhandsgranska
- Taking input from the UserFörhandsgranska
- Task - Building a Simple CalculatorFörhandsgranska
- Dealing with Exceptions caused by User InputFörhandsgranska
- Task - Improving the CalculatorFörhandsgranska
- Reading FilesFörhandsgranska
- Writing FilesFörhandsgranska
- Task - File Based CalculatorFörhandsgranska
In this section, we will be learning how to perform multiple tasks at once to improve the performance and responsiveness of applications. We will also briefly learn what Web Services and APIs are. This will give us an introduction to how the internet and websites work. We will also learn how to use APIs.
- What is Asynchronous Programming?Förhandsgranska
- Implementing an Asynchronous MethodFörhandsgranska
- Task - Asynchronously Reading FilesFörhandsgranska
- Introduction to APIsFörhandsgranska
- Making a GET RequestFörhandsgranska
- Task - Using an APIFörhandsgranska
- Handling Exceptions caused by HTTP RequestFörhandsgranska
- Task - Exception Handling for API ResponseFörhandsgranska
In this section we will learn what are databases, specifically what are SQL databases and how to create them. We will study their structure and will learn to perform some basic operations on the databases. This chapter will serve as an introduction to ADO.NET which is a .NET module used for interacting with databases.
- What is a Database?Förhandsgranska
- Structure of a Relational DatabaseFörhandsgranska
- Setting Up A MySQL ServerFörhandsgranska
- Connecting to the MySQL ServerFörhandsgranska
- Task - Writing Connection StringsFörhandsgranska
- Executing CommandsFörhandsgranska
- Task - Executing MySQL CommandsFörhandsgranska
- MySqlCommand MethodsFörhandsgranska
- Task - Connecting to a MySQL Database and Executing CommandsFörhandsgranska
In this section, we'll cover the fundamental CRUD operations (Create, Read, Update, Delete) using SQL. We'll explore SQL syntax at a basic level and recap how to implement each SQL statement in C# code. While some parts may serve as a review from the previous section, this will provide a solid understanding of essential database concepts, enabling you to understand both the SQL and C# code and write it independently.
- Introduction to CRUD OperationsFörhandsgranska
- Installing & Using MySQL WorkbenchFörhandsgranska
- CREATE - Part IFörhandsgranska
- Task - Using CREATEFörhandsgranska
- CREATE - Part IIFörhandsgranska
- Task - Using INSERTFörhandsgranska
- ReadFörhandsgranska
- Task - Using SELECTFörhandsgranska
- UpdateFörhandsgranska
- Task - Using UPDATEFörhandsgranska
- Delete - Part IFörhandsgranska
- Delete - Part IIFörhandsgranska
- Task - Using DELETEFörhandsgranska
In this chapter we will learn about additional functions or methods for making database management more efficient. For-example executing multiple SQL commands at once using Stored Procedures, and retrieving data in bulk from the SQL database using DataSet.
Module 6 / HTML Essentials
Get an introduction to the web and HTML, including the significance of tags, elements, and attributes. Learn about the basic structure of an HTML document and the brief history of the web.
Master the essentials of HTML markup, focusing on special text formatting and lists, understanding their significance in structuring content within an HTML document. Dive into the intricacies of HTML document structure while refining text markup techniques.
- HTML Document Structure ExplainedFörhandsgranska
- Challenge: Structuring an HTML DocumentFörhandsgranska
- Using Headings and Paragraphs in HTMLFörhandsgranska
- Challenge: Mastering Text MarkupFörhandsgranska
- Enhancing Text and Interactivity in HTMLFörhandsgranska
- Challenge: Applying Special Text MarkupFörhandsgranska
- Creating and Using Lists in HTMLFörhandsgranska
- Challenge: Structuring Content with ListsFörhandsgranska
Unlock the power of visual and auditory content in web development as you learn to seamlessly integrate images, video, and audio elements into HTML documents. Explore the nuances of incorporating various media formats.
Navigate the intricacies of data presentation and user interaction with comprehensive coverage of tables and forms in HTML, encompassing table structures, form creation, and input elements. Gain proficiency in implementing form input elements and leveraging attributes for enhanced functionality.
- Creating and Structuring HTML TablesFörhandsgranska
- Challenge: Working with TablesFörhandsgranska
- Building HTML FormsFörhandsgranska
- Challenge: Building a Web FormFörhandsgranska
- Using Form Inputs and Labels EffectivelyFörhandsgranska
- Challenge: Applying Form Inputs and LabelsFörhandsgranska
- HTML Input Attributes for Enhanced FunctionalityFörhandsgranska
Elevate your HTML skills to the next level by delving into semantic HTML elements, empowering you to create well-structured and accessible web content. Embark on building your first website, applying newfound knowledge to bring your ideas to life.
Module 7 / CSS Fundamentals
Learn what CSS is, how to connect it with HTML, and how to style HTML elements using selectors. Explore foundational concepts like text colors, user action pseudo-classes, and variables in CSS.
- What is CSS and Why is it Important?Förhandsgranska
- Linking CSS to an HTML DocumentFörhandsgranska
- Mastering CSS Selectors for Styling HTML ElementsFörhandsgranska
- Challenge: Apply Your First CSS StylesFörhandsgranska
- Challenge: Style with Class SelectorsFörhandsgranska
- Enhancing Styles with User Action Pseudo-ClassesFörhandsgranska
- Challenge: Apply User Action Pseudo-ClassesFörhandsgranska
- Changing Text Colors in CSSFörhandsgranska
- Optimizing Workflow for Efficient CSS CodingFörhandsgranska
- Challenge: Use Variables for Better CSS ManagementFörhandsgranska
Discover how to style and format text on your web pages. Learn to apply custom fonts and explore various font properties to enhance the appearance of text.
Learn the fundamentals of the box model, which defines the layout and spacing of elements on a web page. Explore concepts such as box sizing, adding space to elements, working with block-level and inline elements, and utilizing structural and functional pseudo-classes for advanced styling.
- What is the CSS Box Model?Förhandsgranska
- Understanding Box Sizing in CSSFörhandsgranska
- Adding Space with Margins and PaddingFörhandsgranska
- Challenge: Apply Box Sizing to ElementsFörhandsgranska
- Using Structural and Functional Pseudo-ClassesFörhandsgranska
- Challenge: Practice Structural Pseudo-ClassesFörhandsgranska
- Understanding Block, Inline, and Inline-Block ElementsFörhandsgranska
- Working with Block-Level ElementsFörhandsgranska
- Working with Inline ElementsFörhandsgranska
- Challenge: Predict Page Layout with Different Element TypesFörhandsgranska
Discover Flexbox, a powerful CSS layout method for arranging elements in rows and columns. Learn how to control the direction, alignment, and spacing of elements horizontally and vertically, as well as customize individual flex items for precise layouts.
- What is Flexbox and Why Use It?Förhandsgranska
- Setting the Flex Direction for LayoutsFörhandsgranska
- Justifying Content Horizontally in FlexboxFörhandsgranska
- Aligning Items Vertically in FlexboxFörhandsgranska
- Understanding Flex Item PropertiesFörhandsgranska
- Challenge: Apply Flexbox ConceptsFörhandsgranska
- Challenge: Build a Layout with FlexboxFörhandsgranska
Learn how to enhance the visual appeal of your web pages with CSS. Explore techniques for applying background colors and images, styling images, using decorative pseudo-elements, and adding shadows to create stunning designs.
- Using Background Colors for DesignFörhandsgranska
- Applying Background Images to ElementsFörhandsgranska
- Working with Images in CSSFörhandsgranska
- Creating Effects with Decorative Pseudo-ElementsFörhandsgranska
- Adding Shadows for Depth and StyleFörhandsgranska
- Challenge: Implement Decorative Effects in CSSFörhandsgranska
- Further StepsFörhandsgranska
Module 8 / Advanced CSS Techniques
Research what learners can expect from this advanced HTML and CSS styling course. What do you need to know before starting the course? What topics will be covered in it?
Position and manage elements on the web pages. Learn about the different positioning properties, discover how to use the stacking order to control the visibility of elements that overlap each other, and finally, handle content overflow.
- Understanding CSS PositioningFörhandsgranska
- Relative Positioning ExplainedFörhandsgranska
- Challenge: Apply Relative PositioningFörhandsgranska
- Absolute Positioning in CSSFörhandsgranska
- Challenge: Implement Absolute PositioningFörhandsgranska
- Fixed Positioning for Sticky UI ElementsFörhandsgranska
- Challenge: Work with Fixed PositioningFörhandsgranska
- Sticky Positioning for Dynamic LayoutsFörhandsgranska
- Challenge: Master Sticky PositioningFörhandsgranska
- Managing the Stacking Order of ElementsFörhandsgranska
- Challenge: Control Z-Index and Overlapping ElementFörhandsgranska
- Handling Content Overflow in CSSFörhandsgranska
Research the power of transitions and learn how to improve the user experience. Discover how to liven properties smoothly and gradually, creating seamless state transitions.
- Introduction to CSS TransitionsFörhandsgranska
- Choosing the Right Transition PropertiesFörhandsgranska
- Setting Transition Duration for EffectsFörhandsgranska
- Customizing Transitions with Timing FunctionsFörhandsgranska
- Adding Delay to CSS TransitionsFörhandsgranska
- Combining TransitionsFörhandsgranska
- Challenge: Add a Smooth Transition EffectFörhandsgranska
Learn about the animation property and how it can be used to create dynamic and engaging designs. Discover how to create complex animations using keyframes and how to control the animation.
Explore the transformation property, which allows modifying the appearance and position of elements on a webpage. Learn how to scale, rotate, skew, and translate elements in two and three dimensions. Combine multiple transformations to create more complex effects.
- Introduction to CSS TransformationsFörhandsgranska
- Scaling ElementsFörhandsgranska
- Rotating Elements in 2D and 3DFörhandsgranska
- Challenge: Apply Scaling & RotationFörhandsgranska
- Translating Elements for Dynamic EffectsFörhandsgranska
- Skewing Elements for Unique DesignsFörhandsgranska
- Using Perspective for Depth EffectsFörhandsgranska
- Challenge: Combine Translation and SkewingFörhandsgranska
The principles and techniques used in adaptive/responsive design aim to make websites and applications accessible and visually appealing across different devices, screen sizes, and orientations.
Learn about preprocessors in CSS and how they can help to write more efficient and maintainable code. Understand how to use preprocessors to simplify the workflow and generate cleaner CSS code.
- Introduction to CSS PreprocessorsFörhandsgranska
- Understanding Sass Syntax for Better CSSFörhandsgranska
- Using Sass Variables for Reusable StylesFörhandsgranska
- Performing Calculations with Sass Numeric OperatorsFörhandsgranska
- Nesting Styles for Cleaner CodeFörhandsgranska
- Extending Styles with the @extend DirectiveFörhandsgranska
- Organizing Sass Files for Scalable ProjectsFörhandsgranska
Module 9 / Introduction to JavaScript
Discover the fundamentals of JavaScript, including its purpose and syntax. Learn how to work with the console for output and use comments to organize and document your code. These foundational skills will prepare you for a deeper exploration of JavaScript's capabilities.
Explore the building blocks of JavaScript by distinguishing between literals and variables. Understand the core data types, including `null` and arrays, and learn how to manipulate them using array methods.
- Understanding Variables in JavaScriptFörhandsgranska
- Challenge: Define the VariableFörhandsgranska
- Using const for ConstantsFörhandsgranska
- Exploring JavaScript Data TypesFörhandsgranska
- Working with null in JavaScriptFörhandsgranska
- Introduction to ArraysFörhandsgranska
- Array Methods and ManipulationFörhandsgranska
- Challenge: Perform Array OperationsFörhandsgranska
Learn how to manipulate JavaScript's data types through essential operations. Master assignment, mathematical operations, incrementing and decrementing, comparisons, logical operations, and string concatenation.
- Understanding Assignment OperatorsFörhandsgranska
- Mathematical Operations in JavaScriptFörhandsgranska
- Assignment Operators in JavaScriptFörhandsgranska
- Increment and Decrement OperatorsFörhandsgranska
- Challenge: Variable Operations PracticeFörhandsgranska
- Comparison Operators in JavaScriptFörhandsgranska
- Logical Operators ExplainedFörhandsgranska
- Challenge: Compare Variables in JavaScriptFörhandsgranska
- Concatenating Strings in JavaScriptFörhandsgranska
- Challenge: Build Sentences with JavaScriptFörhandsgranska
Discover how to control the flow of your programs with conditional statements. Master `if`, `else`, and `else if` to instruct JavaScript on making decisions and executing code based on different conditions.
Streamline your code by mastering JavaScript's looping structures. Explore `while`, `do while`, and `for` loops, and learn how to control their behavior using `break` and `continue`. Unlock the power of loops to perform repetitive tasks efficiently.
- Understanding the while Loop in JavaScriptFörhandsgranska
- Using the do while Loop for IterationFörhandsgranska
- Challenge: Print Numbers from 5 to 9Förhandsgranska
- Mastering the for Loop in JavaScriptFörhandsgranska
- Challenge: Console Tigers with LoopsFörhandsgranska
- Breaking Out of Loops with breakFörhandsgranska
- Skipping Iterations with continueFörhandsgranska
- Challenge: Stop and Skip in LoopsFörhandsgranska
Discover the power of functions in JavaScript. Learn how to define functions, work with arguments, and use the `return` statement to create reusable and efficient code. Mastering functions will enhance your ability to write clean and modular programs.
- What Are Functions in JavaScript?Förhandsgranska
- Defining Functions in JavaScriptFörhandsgranska
- Challenge: Write a Function – My NameFörhandsgranska
- Using Function Arguments EffectivelyFörhandsgranska
- Returning Values from FunctionsFörhandsgranska
- Challenge: Create a Sum FunctionFörhandsgranska
- Course Summary & Next StepsFörhandsgranska
Module 10 / JavaScript Data Structures
Get a clear roadmap of what's to come, understand the prerequisites, and learn valuable tips to set you up for success as you delve into objects, arrays, and essential programming concepts.
Explore the core concepts of JavaScript objects. This section covers the fundamentals of object creation, property management, and method implementation.
- Understanding Objects in JavaScriptFörhandsgranska
- Creating Objects in JavaScriptFörhandsgranska
- Working with Nested Object PropertiesFörhandsgranska
- Challenge: Create and Structure an ObjectFörhandsgranska
- Accessing Object Properties in JavaScriptFörhandsgranska
- Challenge: Retrieve Object Property ValuesFörhandsgranska
- Managing Object PropertiesFörhandsgranska
- Challenge: Modify and Extend an ObjectFörhandsgranska
- Defining Object MethodsFörhandsgranska
- Using Properties within MethodsFörhandsgranska
- Challenge: Work with Object MethodsFörhandsgranska
- Fundamentals of JavaScript Objects Sum-UpFörhandsgranska
Dive into advanced techniques for working with JavaScript objects. This section delves into various strategies to efficiently manipulate and interact with objects.
- Iterating Over Object Properties with the for...in LoopFörhandsgranska
- Challenge: Explore Object Properties with IterationFörhandsgranska
- Using hasOwnProperty() to Check Object PropertiesFörhandsgranska
- Challenge: Object Property Iteration with hasOwnProperty()Förhandsgranska
- Cloning and Merging Objects with the Spread OperatorFörhandsgranska
- Challenge: Combine Objects with the Spread OperatorFörhandsgranska
- Destructuring Objects for Cleaner CodeFörhandsgranska
- Challenge: Extract Data with Object DestructuringFörhandsgranska
- Advanced Object Manipulation Sum-UpFörhandsgranska
Embark on a journey into the JavaScript arrays. This section provides a strong foundation for creating arrays, managing elements, and executing basic array operations.
- Understanding JavaScript ArraysFörhandsgranska
- Challenge: Access Array ElementsFörhandsgranska
- Modifying Arrays and Accessing ElementsFörhandsgranska
- Challenge: Modify Array ElementsFörhandsgranska
- Iterating Over Arrays with the for LoopFörhandsgranska
- Challenge: Loop Through Arrays with forFörhandsgranska
- Using the for...of Loop for Array IterationFörhandsgranska
- Challenge: Efficient Array Iteration with for...ofFörhandsgranska
- Mastering JavaScript Arrays Sum-UpFörhandsgranska
Master the advanced array manipulation skills, covering various techniques and methods for handling arrays effectively in multiple scenarios.
- Transforming Arrays with the map() MethodFörhandsgranska
- Challenge: Modify Array Elements Using map()Förhandsgranska
- Filtering Arrays with the filter() MethodFörhandsgranska
- Challenge: Select Specific Data Using filter()Förhandsgranska
- Finding Elements in an Array with the find() MethodFörhandsgranska
- Challenge: Search for Items Using find()Förhandsgranska
- Sorting Arrays with the sort() MethodFörhandsgranska
- Challenge: Sort and Extract Data with sort()Förhandsgranska
- Advanced Array Methods and Transformations Sum-UpFörhandsgranska
- Course SummaryFörhandsgranska
Module 11 / React Mastery
Gain an understanding of the core principles of React. You'll learn about JSX (JavaScript XML), building reusable UI components, and rendering elements. Additionally, you'll explore the importance of data collection and conditional rendering in React applications. By the end of this section, you'll have a solid foundation of React's essential concepts, setting you up for success in the more advanced topics covered in the following sections.
- What Is React and Why Use It?Förhandsgranska
- Comparing SPAs and MPAs in Web DevelopmentFörhandsgranska
- How React Works with the Virtual DOMFörhandsgranska
- Introducing JSX for Writing HTML in JavaScriptFörhandsgranska
- Building Complex UI with JSXFörhandsgranska
- Rendering Elements in ReactFörhandsgranska
- Challenge: Render an Element in ReactFörhandsgranska
- Understanding React ComponentsFörhandsgranska
- Passing Data with Props in ReactFörhandsgranska
- Challenge: Create Functional ComponentsFörhandsgranska
- Conditional Rendering in ReactFörhandsgranska
- Challenge: Implement Conditional Rendering – Chat NotificationFörhandsgranska
- Challenge: Implement Conditional Rendering – Bank AlertFörhandsgranska
- Rendering Collections of Data in ReactFörhandsgranska
- Challenge: Display Data Collections in ReactFörhandsgranska
- React Fundamentals Wrap-UpFörhandsgranska
Explore the various methods of adding styles to the React applications. You will learn how to apply styles to individual components, use dynamic styles, and maintain a scalable and maintainable styling approach in your projects.
- Introduction to Styling in ReactFörhandsgranska
- Using Inline Styles in ReactFörhandsgranska
- Applying Inline Styles in PracticeFörhandsgranska
- Challenge: Use Inline Styles in a React ComponentFörhandsgranska
- Styling React Components with External CSSFörhandsgranska
- Applying External CSS in PracticeFörhandsgranska
- Challenge: Apply External CSS to a React AppFörhandsgranska
- Using CSS Modules for Scoped Styling in ReactFörhandsgranska
- Organizing File and Folder Structures for StylesFörhandsgranska
- Challenge: Use CSS Modules in ReactFörhandsgranska
- Styling Techniques in React Wrap-UpFörhandsgranska
Powerful features in modern React development. Hooks revolutionize how we write functional components, providing a concise and intuitive way to manage state and perform side effects. Conversely, Context allows us to share data through the component tree without prop drilling. Combining hooks and Context enables efficient state management and simplified data sharing in React applications.
- Introduction to React Hooks and ContextFörhandsgranska
- Managing State with the useState HookFörhandsgranska
- Challenge: Toggle Visibility with useStateFörhandsgranska
- Working with References Using the useRef HookFörhandsgranska
- Challenge: Build a Controlled Form ComponentFörhandsgranska
- Handling Side Effects with the useEffect HookFörhandsgranska
- Challenge: Fetch and Display Data with useEffectFörhandsgranska
- Optimizing Performance with the useMemo HookFörhandsgranska
- Challenge: Implement a Car List Filter with useMemoFörhandsgranska
- Sharing State Across Components with ContextFörhandsgranska
- Using Context in a Real-World ScenarioFörhandsgranska
- Challenge: Build a World of Astronomy App with ContextFörhandsgranska
- React Hooks and Context Wrap-UpFörhandsgranska
Step-by-step guide on how to start a real-world React project. From setting up your development environment to understanding project organization and critical tools, you'll gain the knowledge and confidence to embark on your React journey.
- Setting Up Your React Development EnvironmentFörhandsgranska
- Choosing a Code Editor for React DevelopmentFörhandsgranska
- Organizing the Project Folder StructureFörhandsgranska
- Working with the Terminal in React DevelopmentFörhandsgranska
- Starting and Running a React ProjectFörhandsgranska
- React Project Setup Wrap-UpFörhandsgranska
Module 12 / React Router Essentials
Learn the theoretical basics of concepts such as URL, domain, protocol, query parameters, and more. Understand the significance of routing in web applications and why we need the React Router library.
Discover how to create an entire React application from scratch, with the ability to display content that adapts based on the URL using React Router functionality.
- Overview of the Multi-Page WebsiteFörhandsgranska
- Installing React RouterFörhandsgranska
- Enabling Routing in a React AppFörhandsgranska
- Defining Routes for NavigationFörhandsgranska
- Recap: First Steps in React RouterFörhandsgranska
- Optimizing Imports with Lazy LoadingFörhandsgranska
- Implementing a Fallback ComponentFörhandsgranska
- Recap: Second Steps in React RouterFörhandsgranska
- Creating and Managing NavigationFörhandsgranska
- Exploring React Router's Complete LogicFörhandsgranska
- Recap of React Router FundamentalsFörhandsgranska
Explore using query strings for sharing and managing application state via URLs, work with different data types in query parameters, and leverage React Router for navigation and effects based on URL changes.
- OverviewFörhandsgranska
- Understanding Query Strings in URLsFörhandsgranska
- Setting Up a React ComponentFörhandsgranska
- Inspecting Recent ChangesFörhandsgranska
- Working with Query ParametersFörhandsgranska
- Integrating useSearchParams HookFörhandsgranska
- Final AppFörhandsgranska
- React Router Course SummaryFörhandsgranska
Module 13 / Advanced C# with .NET
In this section, we will learn what MAUI is, and how to set up a .NET MAUI application. We will also look at the structure of an MAUI application, and in the end, we will learn how to add some basic elements to our UI. This section will prepare us for the rest of the course where we will be working with more practical concepts.
In this section we will learn about delegates, events and data binding. Using this knowledge we will learn how to make interesting interactive GUI applications.
In this section, we will learn what Threading is and how to use it to keep our applications responsive, and run smoothly while performing resource intensive tasks. We will see how to differs from other similar concepts on C# and what are good practices when implementing Threading in our application. There will also be some interesting tasks to help us in understand this concept on a deeper level.
In this section, we will learn how to make more robust methods, classes and other objects which can work multiple types of input data types, by first learning about Generics and how to implement generic classes, then we will move on to Reflection and how to use reflection for further improving the capabilities of our programs.
- What are Generics?Förhandsgranska
- Implementing Generic MethodsFörhandsgranska
- Task - Implementing a Generic MethodFörhandsgranska
- Implementing Generic ClassesFörhandsgranska
- Task - Implementing a Generic ClassFörhandsgranska
- Introduction to ReflectionFörhandsgranska
- Basic ReflectionFörhandsgranska
- Task - ReflectionFörhandsgranska
- What's Next?Förhandsgranska
Requirements
- A computer with a browser - all browsers are supported.
- Your enthusiasm to enhance your tech skills.
- Everything else needed to start learning and practicing is already included in this course.
Over 200,000 5-star ratings and counting
Ruslan Kravchuk
Det viktigaste är att lära sig och inte ge upp
Materialet är bra, det finns mycket att lära, allt för att bli bättre och det viktigaste är att lära sig det man vill....
Matteo Comune
Tack vare dem lär jag mig mycket…
Tack vare dem lär jag mig mycket snabbare eftersom de hjälper dig att förstå allt från grunden. Det är den bästa webbplatsen som hjälper personer utan IT-bakgrund...
Yuliana Cadavid
Utmärkt kurs för nybörjare
Utmärkt kurs för nybörjare, de testar dina kunskaper i varje lektion...
Elpunzon
Jag njuter av min Codefinity-upplevelse…
Jag njuter av min Codefinity-upplevelse med att lära mig Python. Det självstyrda lärsättet är fantastiskt eftersom jag kan anpassa det efter mitt schema...
Alexandru Alexandru
Det är trevligt att lära sig från Codefinity
Det är trevligt att lära sig från Codefinity. Det är enkelt och har bra exempel på vad jag lärt mig här...
jacob Templet
Easy to follow along with and provides…
Lätt att följa med i och ger utmaningar i min vardag. Utmaningen får mig att vilja lära mig dag efter dag...
Elan
Codefinity är ett heltäckande lärverktyg…
Codefinity är ett heltäckande lärverktyg som hjälper dig att utveckla dina färdigheter som mjukvaruingenjör eller datavetare. Övningarna är roliga och ett bra sätt att skärpa dina kunskaper...
Thibault
Första gången jag lär mig att koda
Första gången jag lär mig att koda och lyckas med Codefinity - tack...
Adrien Morel
Väl utformad för totala nybörjare
Väl utformad för totala nybörjare, med stegvis utveckling som får mig att känna mig trygg....
_Gracy
det är helt enkelt perfekt förklarat
det är helt enkelt perfekt förklarat! Hittills har jag inte upplevt några svårigheter eftersom allt är så välorganiserat...
Ruslan Kravchuk
Det viktigaste är att lära sig och inte ge upp
Materialet är bra, det finns mycket att lära, allt för att bli bättre och det viktigaste är att lära sig det man vill....
Matteo Comune
Tack vare dem lär jag mig mycket…
Tack vare dem lär jag mig mycket snabbare eftersom de hjälper dig att förstå allt från grunden. Det är den bästa webbplatsen som hjälper personer utan IT-bakgrund...
Yuliana Cadavid
Utmärkt kurs för nybörjare
Utmärkt kurs för nybörjare, de testar dina kunskaper i varje lektion...
Elpunzon
Jag njuter av min Codefinity-upplevelse…
Jag njuter av min Codefinity-upplevelse med att lära mig Python. Det självstyrda lärsättet är fantastiskt eftersom jag kan anpassa det efter mitt schema...
Alexandru Alexandru
Det är trevligt att lära sig från Codefinity
Det är trevligt att lära sig från Codefinity. Det är enkelt och har bra exempel på vad jag lärt mig här...
jacob Templet
Easy to follow along with and provides…
Lätt att följa med i och ger utmaningar i min vardag. Utmaningen får mig att vilja lära mig dag efter dag...
Elan
Codefinity är ett heltäckande lärverktyg…
Codefinity är ett heltäckande lärverktyg som hjälper dig att utveckla dina färdigheter som mjukvaruingenjör eller datavetare. Övningarna är roliga och ett bra sätt att skärpa dina kunskaper...
Thibault
Första gången jag lär mig att koda
Första gången jag lär mig att koda och lyckas med Codefinity - tack...
Adrien Morel
Väl utformad för totala nybörjare
Väl utformad för totala nybörjare, med stegvis utveckling som får mig att känna mig trygg....
_Gracy
det är helt enkelt perfekt förklarat
det är helt enkelt perfekt förklarat! Hittills har jag inte upplevt några svårigheter eftersom allt är så välorganiserat...
Data Engineer
Certifikat för slutförande
Visa dina nyförvärvade färdigheter. Du har förtjänat det
Discover more
Learning tracks
Endast för Ultimate
1 Kurs
1 Projekt
0 Task
Endast för Ultimate
7 Kurser
345 Uppgifter
Endast för Ultimate
5 Kurser
119 Uppgifter
Endast för Ultimate
5 Kurser
146 Uppgifter
Endast för Ultimate
4 Kurser
115 Uppgifter
Endast för Ultimate
6 Kurser
101 Uppgifter
Endast för Ultimate
6 Kurser
168 Uppgifter
Endast för Ultimate
5 Kurser
135 Uppgifter
Endast för Ultimate
2 Kurser
1 Projekt
57 Uppgifter
Endast för Ultimate
7 Kurser
376 Uppgifter
Endast för Ultimate
4 Kurser
143 Uppgifter
Endast för Ultimate
5 Kurser
180 Uppgifter
Endast för Ultimate
5 Kurser
165 Uppgifter
Endast för Ultimate
6 Kurser
308 Uppgifter
Endast för Ultimate
6 Kurser
252 Uppgifter
Endast för Ultimate
8 Kurser
2 Projekt
176 Uppgifter
Endast för Ultimate
2 Kurser
80 Uppgifter
Endast för Ultimate
7 Kurser
293 Uppgifter
Endast för Ultimate
1 Projekt
0 Task
Endast för Ultimate
2 Kurser
21 Uppgifter
Endast för Ultimate
5 Kurser
111 Uppgifter
Endast för Ultimate
2 Kurser
0 Task
Endast för Ultimate
3 Kurser
39 Uppgifter
Endast för Ultimate
13 Kurser
555 Uppgifter
Endast för Ultimate
1 Kurs
0 Task
Endast för Ultimate
0 Task
Endast för Ultimate
5 Kurser
139 Uppgifter
Endast för Ultimate
3 Kurser
71 Uppgifter
Endast för Ultimate
7 Kurser
282 Uppgifter
Endast för Ultimate
5 Kurser
239 Uppgifter
Endast för Ultimate
4 Kurser
125 Uppgifter
Endast för Ultimate
2 Kurser
33 Uppgifter
Endast för Ultimate
3 Kurser
119 Uppgifter
Endast för Ultimate
1 Kurs
15 Uppgifter
Endast för Ultimate
3 Kurser
75 Uppgifter
Endast för Ultimate
3 Kurser
31 Uppgifter
Endast för Ultimate
2 Kurser
151 Uppgifter
Endast för Ultimate
3 Kurser
56 Uppgifter
Endast för Ultimate
2 Kurser
1 Projekt
38 Uppgifter
Endast för Ultimate
3 Kurser
36 Uppgifter
Endast för Ultimate
2 Kurser
1 Projekt
38 Uppgifter
Endast för Ultimate
5 Kurser
134 Uppgifter
Learning tracks
spår
TEST TRACK 12
Nybörjare
4.0
(7146)
spår
Full Stack Web Development
Nybörjare
4.5
(58)
spår
Become a React Developer
Medelnivå
4.9
(7)
spår
Mastering Data Visualization
Medelnivå
4.6
(7)
spår
SQL from Zero to Hero
Nybörjare
4.7
(93)
spår
С++ Essentials
Nybörjare
4.4
(17)
spår
Python from Zero to Hero
Nybörjare
4.7
(284)
spår
Supervised Machine Learning
Medelnivå
4.9
(7)
spår
Python Beyond Intermediate
Nybörjare
5.0
(1)
spår
Java Essentials
Nybörjare
4.3
(9)
spår
Game Development with Unity
Nybörjare
4.6
(7)
spår
Become a Django Developer
Avancerad
4.4
(27)
spår
Flask for Dummies
Medelnivå
4.5
(31)
spår
Frontend Development Foundations
Nybörjare
4.6
(52)
spår
Web Developer from Zero to Hero
Nybörjare
4.6
(56)
spår
Preparation for Data Science
Medelnivå
4.5
(11)
spår
Deep Learning Odyssey
Avancerad
5.0
(3)
spår
Web Development with C#
Nybörjare
4.8
(98)
spår
TEST E2E TRACK BEGINNER
Nybörjare
spår
Test Track
Begginer
4.7
(3)
spår
Skilled Python BackEnd Developer
Avancerad
4.7
(261)
spår
Test Recalculate
Nybörjare
spår
Excel Essentials
Nybörjare
4.5
(33)
spår
Full-Stack .NET Developer Journey
Medelnivå
4.8
(129)
spår
Test track with rating
Avancerad
4.0
(4)
spår
TEST TEST TRACK
Nybörjare
spår
Data Analyst Foundation
Nybörjare
4.7
(111)
spår
C++ Mastery
Avancerad
spår
Java Web
Avancerad
4.5
(30)
spår
Become a QA Engineer
Nybörjare
4.5
(43)
spår
Video Production with Adobe
Nybörjare
spår
Digital Marketing Essentials
Nybörjare
spår
UI/UX Design Tools
Nybörjare
spår
Test image upload track
Nybörjare
spår
Essential Office Skills
Nybörjare
4.6
(24)
spår
GitHub from Zero to Hero
Nybörjare
spår
No-Code Website Development
Nybörjare
spår
C Programming & Low-Level Development
Nybörjare
spår
testes
Nybörjare
4.7
(3)
spår
Test translation track
Medelnivå
spår
Test CMS Track
Nybörjare
4.7
(3)
spår
Python for Data Analysis
Medelnivå
4.6
(9)
Become a Development expert
Interactive exercises
Learning videos
AI-assistant on all courses
Workspaces for designing your own projects
Ready to get started?
ProBest intro offer | UltimateA complete experience to kickstart your career | |
---|---|---|
85+ Top-Rated courses | ||
Completion certificates | ||
AI-Assistant in all courses | ||
20+ hands-on Real-world projects | ||
Personalized study tracks | ||
Unlimited workspaces | ||
Boost your Tech Skills!
with up to 55% off
What you'll get with our subscription:
Access to 85+ top-rated courses
AI-driven Learning
Workspaces for practicing your skills
Personalized study tracks
Certificates of completion
Training 2 or more people?
Get your team access to Codefinity courses anytime, anywhere.
Try Codefinity Teams