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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。