View all courses
This Course is designed for the aspiring Web Designers and Developers with a need to understand the HTML in enough detail along with its simple overview, and practical examples.
Read more
CSS is used to control the style of a web document in a simple and easy way.This tutorial will help both students as well as professionals who want to make their websites.
JavaScript is a lightweight, interpreted programming language. It is designed for creating network-centric applications. It is complimentary to and integrated with Java.
This tutorial is designed for software programmers who wants to learn the basics of jQuery and its programming concepts in simple and easy ways. This tutorial will give you enough understanding on components of jQuery with suitable examples.
AJAX, is a web development technique for creating interactive web applications. If you know JavaScript, HTML, CSS, and XML, then you need to spend just one hour to start with AJAX.
HTML5 is the latest and most enhanced version of HTML.Technically, HTML is not a programming language, but rather a mark up language.This tutorial has been designed for beginners in HTML5 providing the basic to advanced concepts of the subject.
PHP (Hypertext Preprocessor), it is extensively used by developers for programming and development. PHP has lots of benefits and easy to learn so it is the first choice of developers and programmer.
Many PHP programming courses cover the basics or a specific concept. Our Advanced PHP Development course gives you the concepts, features, tools, and practical advice to use them together to build performant, secure, scalable, and reliable web applications.
In this tutorial we will provide you with detailed instructions on how to use WordPress to create and manage your site. WordPress can be used for both simple and complex websites. In our WordPress tutorial we have tried to cover all the basics and few advanced topics.
This tutorial has been prepared for developers who would like to learn the art of developing websites using CodeIgniter. It provides a complete understanding of this framework.
Zend Framework 1 is an open source framework for developing web applications and services using PHP 5.3+. Zend Framework 1 uses 100% object-oriented code and utilises most of the new features of PHP 5.3.
Zend Framework 2 is an open source Module based framework for developing web applications and services using PHP 5.5+. Zend Framework 1 uses 100% object-oriented code and utilises most of the new features of PHP 5.5
The Language Which does not need any prior knowledge of Programming and Easy to learn .Python is Object-oriented ,interpreted and Server side Scripting language .
In Advance concept After learning Core Python We will use Python to create Desktop Application, Web Application, Sockets Programming , Multithread Programming. Since its An Open source Language its free of Cost
Ruby is server side, dynamic, reflective, object-oriented, general-purpose programming language. Ruby is "an interpreted scripting language for quick and easy object-oriented programming"
Ruby on Rails, or simply Rails, is a web application frameworkwritten in Ruby under the MIT License. Rails is a model–view–controller (MVC) framework, providing default structures for a database, a web service, and web pages.
If you have any confusion then you can ask our experts.Our experts will guide you properly.
We are looking you if you are looking guidance for web design and development. Apply online.
Contact us
Class and Object
Class is nothing but a blueprint for an object of it. It is used to create an object mainly. If we relate it to a real-life example then it is like a plan for a building or house where that plan contains details about doors, windows, floors, etc. Based on the class which is the blueprint an object is made which can be referred to as a house in this example. So one plan is used to make a lot of houses in the same way one class can be used to create a lot of classes. So class is not a real-life entity but the object is one.
class Company{
printmyname(){
console.log("hello")
}
const myCompanyObject = new Company()
myCompanyObject.printmyname()
Constructor and use of this
The constructor method is a special method in JavaScript with the exact name ‘constructor.’ It is automatically executed when a new object is created from a class. Its primary purpose is to initialize object properties, allowing you to define the initial state of an object during its instantiation.
class Company {
constructor(name, position) {
this.name = name;
this.position = position;
console.log(
"MY name is " + this.name + " and My position " + this.position,
);
printmyname(grade) {
this.grade = grade;
console.log("hello " + this.name + " and my grade is " + this.grade);
setmyname() {
console.log("hello set my name" + this.position);
const myCompanyObject = new Company("Alok", "Developer");
myCompanyObject.printmyname("5th");
myCompanyObject.setmyname();
Inheritance and Super
Inheritance in JavaScript is a way to pass down properties and methods from a parent class to a child class:
Explanation
Inheritance is a programming technique that allows a new piece of code to reuse and build upon the features of an existing one. In JavaScript, inheritance is implemented using objects, which have an internal link to another object called their prototype.
How to use inheritance
To create a class inheritance in JavaScript, use the extends keyword. For example, to create a class named Model that inherits methods from the Car class, you can use the syntax class Model extends Car.
Benefits
Inheritance can help reduce the lines of code in a program, save time and effort, and make the project cleaner and easier to maintain.
Overriding methods
To override a method in a child class, you can use super.method() in the child method to call the parent method. To override a constructor, you must call the parent constructor as super() in the child constructor before using this
class employee extends Company {
constructor(name, position, salary) {
super(name, position);
this.salary = salary;
console.log("my salary is " + this.salary);
const myemployeeObject = new employee("alok", "developer", 1000000);
< First Getting Started With CodeIgniter URL Routing >
{{questionlistdata.blog_question_description}}
{{answer.blog_answer_description }}