This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| --------------------- | |
| Bubble Sort, | |
| Selection Sort, | |
| Insertion Sort, | |
| Marge Sort, | |
| Quick Sort, | |
| Heap Sort | |
| ---------------------- | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.applet.Applet; | |
| import java.awt.*; | |
| import java.awt.event.*; | |
| import javax.swing.*; | |
| /* | |
| <applet code="AppletDemo" width="320" height="320"> | |
| <param name="myName" value="ritwick dey"/> | |
| </applet> | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function fun1() { | |
| setTimeout(function () { //normal | |
| console.log("normal (setTimeOut)", this); | |
| }, 0); | |
| } | |
| | |
| function fun2() { | |
| setTimeout(() => { //arrow | |
| console.log("arrow (setTimeOut)", this); | |
| }, 0); |
NewerOlder