p5.js中的reverse()函数用于反转给定数组元素的顺序。
用法:
reverse(Array)
参数:该函数接受参数Array,其元素将被反转。
返回值:它返回一个新的反向数组。
以下示例程序旨在说明p5.js中的reverse()函数:
例:本示例使用reverse()函数来颠倒顺序给定数组元素的。
function setup() {
// Creating Canvas size
createCanvas(500, 90);
}
function draw() {
// Set the background color
background(220);
// Initializing the arrays
let Array1 = ['IT', 'CSE', 'ECE'];
let Array2 = ['Civil', 'Mechanical'];
// Calling to reverse() function.
let Array3 = reverse(Array1);
let Array4 = reverse(Array2);
// Set the size of text
textSize(16);
// Set the text color
fill(color('red'));
// Getting new reversed array
text("First reversed array is : "
+ Array3, 50, 30);
text("Second reversed array is : "
+ Array4, 50, 50);
}
输出:
参考: https://p5js.org/reference/#/p5/reverse
相关用法
- PHP Ds\Vector reverse()用法及代码示例
- PHP Ds\Sequence reverse()用法及代码示例
- PHP Ds\Deque reverse()用法及代码示例
- Javascript Array reverse()用法及代码示例
- Javascript typedArray.reverse()用法及代码示例
- Node.js dnsPromises.reverse()用法及代码示例
- p5.js abs()用法及代码示例
- p5.js nfp()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 p5.js | reverse() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。