V Jyothi has Published 83 Articles

What is ECMAScript and how it is related to JavaScript?

V Jyothi

V Jyothi

Updated on 02-Jan-2020 07:59:38

256 Views

JavaScript conforms to ECMAScript standard. JavaScript was first known as LiveScript, but Netscape changed its name to JavaScript, possibly because of the excitement being generated by Java. JavaScript made its first appearance in Netscape 2.0 in 1995 with the name LiveScript. The general-purpose core of the language embedded in Netscape, ... Read More

What does a +function() { } notation do in JavaScript?

V Jyothi

V Jyothi

Updated on 03-Oct-2019 06:40:23

336 Views

The +function() {} notation is primarily used to force the parser to treat whatever follows the + as an expression. This is used for functions that are invoked immediately, for example, +function() { alert("Demo!"); }();However, + before a function is one of the symbol. You can add other options also ... Read More

Do I need to use a semicolon after every function in JavaScript?

V Jyothi

V Jyothi

Updated on 12-Sep-2019 07:35:58

140 Views

Commonly, adding semicolons in JavaScript is optional. Simple statements in JavaScript are generally followed by a semicolon character, just as they are in C, C++, and Java. JavaScript, however, allows you to omit this semicolon if each of your statements is placed on a separate line.No need of a semicolon ... Read More

What is ionic and how is it related with HTML5?

V Jyothi

V Jyothi

Updated on 30-Jul-2019 22:30:22

186 Views

Ionic is an HTML5 Mobile App Development Framework targeted at building hybrid mobile apps. Think of Ionic as the front-end UI framework that handles all the look and feel and UI interactions your app needs to be compelling. Kind of like "Bootstrap for Native", but with the support for a ... Read More

What does the method addFirst(E e) do in java?

V Jyothi

V Jyothi

Updated on 30-Jul-2019 22:30:21

132 Views

The addFirst(E e) method of the class java.util.LinkedList inserts the specified element at the beginning of this list.Example:public class LinkedListDemo {    public static void main(String[] args) {       LinkedList list = new LinkedList();       list.add("Hello");       list.add(2);       list.add("Chocolate");       ... Read More

How to sort an ArrayList in Java in descending order?

V Jyothi

V Jyothi

Updated on 30-Jul-2019 22:30:21

6K+ Views

To sort the contents of an ArrayList in descending orderCreate an ArrayList.Sort the contents of the ArrayList using the sort() method of the Collections class.Then, reverse array list using the reverse() method of the Collections class.Example:import java.util.ArrayList; import java.util.Collections; public class ArrayListSample {    public static void main(String[] args) ... Read More

How to get Natural logarithm of 10 in JavaScript?

V Jyothi

V Jyothi

Updated on 30-Jul-2019 22:30:21

184 Views

To get the Natural logarithm of 10, use the Math.LN10 property in JavaScript. It returns the natural logarithm of 10, which is approximately 2.302.You can try to run the following code to get Natural logarithm of 10:Example Live Demo           JavaScript Math LN10 Property       ... Read More

Integrating Magneto with SAP ECC system

V Jyothi

V Jyothi

Updated on 30-Jul-2019 22:30:20

139 Views

With the integration of SAP ERP with Magneto, you can perform bidirectional communication of orders, sales, and other business data. To check if there is an existing connector, you can reach to SAP support. There are various other vendors in the market who provides ERP-Magneto integration.Integration of ERP-Magneto provides benefit ... Read More

Error while calling Web Service using SRT_UTIL Transaction

V Jyothi

V Jyothi

Updated on 30-Jul-2019 22:30:20

287 Views

This error can come due to multiple reasons. One of possible cause could be that your structure name is 30 characters and it is translated to 26 chars in WSDL.I would suggest changing structure name to 10 characters and it may resolve your issue. Below shows Web Service Utilities:

Integrating SAP with Android

V Jyothi

V Jyothi

Updated on 30-Jul-2019 22:30:20

345 Views

SMP 3/HCPMS (SAP Cloud-based Mobile services) is the new SAP product to create enterprise mobile apps. This can be used to integrate SAP with different mobile platforms. SAP recently launched the SAP Cloud Platform mobile services- a full-featured mobile app platform in the cloud, partners gain the flexibility to build and ... Read More

Advertisements