Set Path in Java

Ayyan
Updated on 13-Jun-2020 12:30:30

2K+ Views

Setting Up the Path for WindowsAssuming you have installed Java in c:\Program Files\java\jdk directory −Right-click on 'My Computer' and select 'Properties'.Click the 'Environment variables' button under the 'Advanced' tab.Now, alter the 'Path' variable so that it also contains the path to the Java executable. Example, if the path is currently set to 'C:\WINDOWS\SYSTEM32', then change your path to read 'C:\WINDOWS\SYSTEM32;c:\Program Files\java\jdk\bin'.

Method copyOfRange in Java: Functionality Explained

Samual Sam
Updated on 13-Jun-2020 12:29:44

239 Views

The copyOfRange(int[] original, int from, int to) method of java.util.Arrays class copies the specified range of the specified array into a new array. The final index of the range (to), which must be greater than or equal to from, may be greater than original. Length, in which case 0 is placed in all elements of the copy whose index is greater than or equal to original. Length - from. The length of the returned array will be to - from.Exampleimport java.util.Arrays; public class ArrayDemo {    public static void main(String[] args) {       int[] arr1 = new ... Read More

Difference Between jQuery Selector and Selector

David Meador
Updated on 13-Jun-2020 12:29:05

441 Views

The $ variable is for jQuery.  If you’re using more than one JavaScript library or multiple versions of jQuery, then you should use jQuery(selector) instead of $(selector) to avoid name conflicts.ExampleTo understand the noConflict() concept, let us see an example of using the jQuery (selector):Live Demo $.noConflict(); jQuery(document).ready(function(){     jQuery("button").click(function(){         jQuery("h3").text("jQuery works perfectly");     }); }); Testing jQuery Click below: Click me The $ sign is used for jQuery, but what if other frameworks also use the same $ sign; this may create issues and ... Read More

Use Wildcards Like Hashname in jQuery Selectors

Amit D
Updated on 13-Jun-2020 12:27:36

5K+ Views

For getting the id that begins or ends with a particular string in jQuery selectors, you shouldn’t use the wildcards $('#name*'), $('#name%'). Instead use the characters ^and $. The ^ is used is used to get all elements starting with a particular string. The $ is used is used to get all elements ending with a particular string.ExampleYou can try to run the following code to learn how to get id beginning and endingwith a particular string.Live Demo $(document).ready(function(){   $("[id$=new1]").css("background-color", "yellow");   $("[id^=myid]").css("background-color", "green"); }); Java HTML Ruby C++

What Happens in Java Program at Compile Time

Alankritha Ammu
Updated on 13-Jun-2020 12:24:56

491 Views

During compile time, java compiler (javac) takes the source file .java file and convert it to bytecode .class file.

Yield Keyword in JavaScript

Rahul Sharma
Updated on 13-Jun-2020 12:12:12

721 Views

The yield keyword is used in JavaScript to pause and resume a generator function. The value of the expression is returned to the generator's caller.Here are the Examples −function* displayRank () {    var selPlayers= [1, 2, 3, 4];    for (var a = 0; a < selPlayers.length; a++) {       yield selPlayers[i];    } }After defining a generator function, use it like the following. HHere displayRank() is the generator function −var rank = displayRank(); // // value: 1 alert(rank.next()); // value: 2 alert(rank.next()); // value: 3 alert(rank.next()); // value: 4 alert(rank.next()); // value: undefined alert(rank.next());

What Does the Method sort(int[] a) Do in Java

Swarali Sree
Updated on 13-Jun-2020 11:56:46

138 Views

The sort(int[]) method of the java.util.Arrays class sorts the specified array of integer values into ascending numerical order.Exampleimport java.util.Arrays; public class ArrayDemo {    public static void main(String[] args) {       int iArr[] = {2, 1, 9, 6, 4};       for (int number : iArr) {          System.out.println("Number = " + number);       }       Arrays.sort(iArr);       System.out.println("The sorted int array is:");       for (int number : iArr) {          System.out.println("Number = " + number);       }    } }Output Number = 2 Number = 1 Number = 9 Number = 6 Number = 4 The sorted int array is: Number = 1 Number = 2 Number = 4 Number = 6 Number = 9

Difference Between window.load and document.ready Functions in jQuery

David Meador
Updated on 13-Jun-2020 11:54:24

4K+ Views

Both the methods are used in jQuery. Let’s see what purpose they fulfill.$(window).load()The code which gets included inside $( window ).on( "load", function() { ... }) runs only once the entire page is ready (not only DOM).Note: The load() method deprecated in jQuery version 1.8. It was completely removed in version 3.0. To see its working, add jQuery version for CDN before 3.0.$(document).ready()The ready() method is used to make a function available after the document is loaded. Whatever code you write inside the $( document ).ready() method will run once the page DOM is ready to execute JavaScript code.You can ... Read More

Why is 'class' a Reserved Word in JavaScript

Rahul Sharma
Updated on 13-Jun-2020 11:44:33

679 Views

The following are the future reserved words, which include ‘class’. These words are used as keywords in proposed extensions and are therefore reserved to allow for the possibility of future adoption of those extensions.class enum extends super const export ImportThe above is defined in the ECMAScript specification.In ECMAScript 6 Language Specification it is used. The class declaration creates a class −class name [extends] {    // body of class }

Why JavaScript var null Throws an Error but var undefined Doesn’t

Johar Ali
Updated on 13-Jun-2020 11:42:53

221 Views

The web browser throws an error for “var null” because it is a reserved identifier.You cannot use the following literals as identifiers in ECMAScript −null frue falseundefined A property with no definition. It is not known and not a reserved identifier. Its type is undefined.nullIt is known and a reserved identifier. But “null” isn’t the same as “false”. When you will declare a variable and set it to null, then null will get printed.

Advertisements