Chuyển đến nội dung chính

Bài đăng

Bài đăng nổi bật

Stardock DeskScapes Full

DeskScapes gives you the capability to animate and customize the wallpaper on your Windows desktop. Choose from the massive integrated library or use your own images or video files to personalize your desktop. Animate your Windows desktop wallpaper Use video and Dream files with DeskScapes to apply animated wallpaper to your desktop. The .Dream format, which DeskScapes uses, has been specially designed to contain content used to animate wallpaper. You can also apply any dream as your PC screensaver! Easily customize and create your own backgrounds DeskScapes includes over 60 special effects plus colorization options to make any image or video into a fantastic, custom background. Want to create a .Dream to share? Use the included Dream Maker app to package your own animated or video creations. System Requirements Requires a 64-bit processor and operating system Windows® 7 / 8 / 10 64-bit Microsoft DirectX™ Minimum screen resolution: 1280 x 720 Download  - DeskScapes Full  How ...

The Secret

toExponential() in javascript

     The toExponential() method returns a string representing the Number object in exponential notation. Parameters fractionDigits      Optional. An integer specifying the number of digits after the decimal point. Defaults to as many digits as necessary to specify the number. Returns      A string representing a Number object in exponential notation with one digit before the decimal point, rounded to fractionDigits digits after the decimal point. If the fractionDigits argument is omitted, the number of digits after the decimal point defaults to the number of digits necessary to represent the value uniquely.      If you use the toExponential() method for a numeric literal and the numeric literal has no exponent and no decimal point, leave a space before the dot that precedes the method call to prevent the dot from being interpreted as a decimal point.      If a number has more digits than requested by the fraction...

Math.min() in javascript

     The Math.min() function returns the smallest of zero or more numbers. min() is a static method of Math, you always use it as Math.min(), rather than as a method of a Math object you created (Math is not a constructor).      If no arguments are given, the result is Infinity.      If at least one of arguments cannot be converted to a number, the result is NaN. Syntax    Math.min([value1,value2,...]); Example    Math.min(20,50,36,2);  //2    Math.min(-3,3,0,99);  //-3 Example Program:- (Editor) Editor is Loading... Output:- Advertisement

Math.max() in javascript

     The Math.max() function returns the largest of zero or more numbers. max() is a static method of Math, you always use it as Math.max(), rather than as a method of a Math object you created (Math is not a constructor).      If no arguments are given, the result is -Infinity.      If at least one of arguments cannot be converted to a number, the result is NaN. Syntax      Math.max([value1,value2,value3,...]); Example Math.max(50, 10);   //  50 Math.max(-1, -200); // -1 Math.max(-999, 2);  //  2 Example Program:- (Editor) Editor is Loading... Output:- Advertisement

Math.floor() in javascript

     The Math.floor() function returns the largest integer less than or equal to a given number. floor() is a static method of Math, you always use it as Math.floor() , rather than as a method of a Math object you created (Math is not a constructor). Syntax    Math.floor(value); Example    Math.floor( 40.95); //  40    Math.floor(-48.95); // -49 Example Program:- (Editor) Editor is Loading... Output:- Advertisement

Math.random() in javascript

     The Math.random() function returns a floating-point, pseudo-random number in the range [0, 1] that is, from 0 (inclusive) up to but not including 1 (exclusive), which you can then scale to your desired range. The implementation selects the initial seed to the random number generation algorithm; it cannot be chosen or reset by the user. Note:  Math.random() does not provide cryptographically secure random numbers. Do not use them for anything related to security.  Syntax    Math.random(); Example    Math.random();  //0 to 1 Numbers    (Math.floor(Math.random() * 100) + 1) // 1 to 100 Numbers Example Program:- (Editor) Editor is Loading... Output:- Advertisement

Math.round() in javascript

     The Math.round() function returns the value of a number rounded to the nearest integer. If the fractional portion of number is 0.5 or greater, the argument is rounded to the next higher integer. If the fractional portion of number is less than 0.5, the argument is rounded to the next lower integer.      Because round() is a static method of Math, you always use it as Math.round() , rather than as a method of a Math object you created (Math has no constructor). Syntax    Math.round(number); Example Math.round(19.39); //19 Math.round(19.7); //20 Math.round(-19.04); //-19 Math.round(-19.51); //-20 Example Program:- (Editor) Editor is Loading... Output:- Advertisement

Math.ceil() in javascript

     The Math.ceil() function returns the smallest integer greater than or equal to a given number. ceil() is a static method of Math, you always use it as Math.ceil(), rather than as a method of a Math object you created (Math is not a constructor). Syntax    Math.ceil(number); Example    Math.ceil(.97);   // 1    Math.ceil(0.3);     // 1    Math.ceil(3);     // 3    Math.ceil(7.003); // 8 Example Program:- (Editor) Editor is Loading... Output:- Advertisement

Free $100