Search results for "javascript"


Send Email Using PHP and JavaScript

on June 2, 2017 πŸ”₯ 13930 views

In this tutorial we will see how to Send Email Using PHP and JavaScript through the html forms. See Live Demo Email Form Let’s start with building a form using Bootstrap classes. As you can create your own custom design for your form, but all you need to do is to declare the id for […]

post

Which Compiler Is Used For C Programming?

on January 1, 2023 πŸ”₯ 582 views

Have you ever wondered? How will a program understand what you have asked it to do? Well, this is when a compiler comes into the scene. C programming is very vast yet very interesting. One thing that you really can’t miss or escape in your C programming language is the C program compiler. A compiler transforms […]

news

What is the difference between observable forkJoin and combineLatest?

on December 18, 2022 πŸ”₯ 0 views

Does the Observable.forkJoin work the same as the Observable.combineLatest let observable1 = service.observable1(); let observable2 = service.observable2(); let observable3 = service.observable3(); let joinedObservables = forkJoin(observable1, observable2, observable3).subscribe(x => { let result1 = x[0]; let result2 = x[1]; let result3 = x[2]; }); let joinedObservables = combineLatest(observable1, observable2, observable3).subscribe(x => { let result1 = x[0]; let […]

discussion

Skills Every Angular Developer Must Have

on December 14, 2022 πŸ”₯ 597 views

Angular is a powerful framework that enables web developers to create single-page applications with no or minimal page reloads.  The framework comes with its own set of quirks and pitfalls, which makes it difficult for users without the right knowledge and skills to work with it properly. If you are looking to hire angular developers […]

news

Best Companies using Node in 2022

on July 5, 2022 πŸ”₯ 1679 views

NodeJS is a JavaScript runtime built on Chrome’s V8 JavaScript engine. NodeJS was initially developed by Ryan Dahl, who released the source code to the community in 2009. NodeJS is free and open-source software that is maintained by a worldwide community of contributors. It is a platform for building fast, scalable network applications. NodeJS is […]

news

Difference Between React and React Native

on May 6, 2022 πŸ”₯ 1158 views

In this article, we’ll be comparing React JS and React Native – the two popular JavaScript-based tools. We will see why both of them are important and how they are different from each other. Anyone familiar with frontend development knows that there are many frameworks and libraries to choose from. However, most of them make […]

news

How to get properties indicated by given selectors from an object?

on September 7, 2021 πŸ”₯ 601 views

Consider an object from which we want to retrive properties. const obj = { earth: { level: { one: ‘soft mud and rocks’ } }, vibrations: [1, 2, { range: ‘medium’ }], }; Use […].map() for each selector, “vibrations[2].range”.replace() to replace square brackets with dots. Use “earth.level.one”.split(‘.’) to split each selector. Use […].filter() to remove […]

snippets

Node 16 is released with updated platform support and much more!

on May 28, 2021 πŸ”₯ 15805 views

Node 16 has released on 20th April 2021 with updated platform support, V8 version 9, and more. This article studies the new features of Node 16 along with the deprecations and breaking changes.

news

Easily Translate Angular 12 App Using ngx-translate

on May 24, 2021 πŸ”₯ 116736 views

Code and Demo This tutorial will see how we can Easily Translate the Angular 12 App Using the library Angular 12 with ngx-translate The internationalization (i18n) library for Angular ngx-translate: It is an internationalization library for Angular. It will let you define translations for your content in different languages and you can switch languages easily. […]

post

Introduction to SQL

on May 20, 2021 πŸ”₯ 821 views
lesson