La función booleana() en p5.js se usa para convertir la string y el valor numérico dados en su representación booleana.
Sintaxis:
boolean(Value)
Parámetros: esta función acepta un valor de parámetro único que se convertirá en su representación booleana. Este valor puede ser un valor entero, flotante, de string, booleano, negativo o positivo y una array de valores.
Valor devuelto: Devuelve la representación booleana convertida.
El siguiente programa ilustra la función booleana() en p5.js:
Ejemplo 1: este ejemplo utiliza la función booleana() para convertir el valor de entrada en su valor booleano.
function setup() { // Creating Canvas size createCanvas(600, 200); } function draw() { // Set the background color background(220); // Initializing some values let Value1 = 12; let Value2 = 12.5; let Value3 = -7.9; let Value4 = -6; let Value5 = "6"; let Value6 = 0; // Calling to boolean() function. let A = boolean(Value1); let B = boolean(Value2); let C = boolean(Value3); let D = boolean(Value4); let E = boolean(Value5); let F = boolean(Value6); // Set the size of text textSize(16); // Set the text color fill(color('red')); // Getting boolean representation text("Boolean representation of value 12 is: " + A, 50, 30); text("Boolean representation of value 12.5 is: " + B, 50, 60); text("Boolean representation of value -7.9 is: " + C, 50, 90); text("Boolean representation of value -6 is: " + D, 50, 110); text("Boolean representation of string '6' is: " + E, 50, 140); text("Boolean representation of string 0 is: " + F, 50, 170); }
Producción:
Ejemplo 2: este ejemplo utiliza la función booleana() para convertir el valor de entrada en su valor booleano.
function setup() { // Creating Canvas size createCanvas(600, 140); } function draw() { // Set the background color background(220); // Initializing some values let Value1 = true; let Value2 = false; let Value3 = "Geeks"; let Value4 = [12, 3.6, -9.8, "true", false, "Geeks"]; // Calling to boolean() function. let A = boolean(Value1); let B = boolean(Value2); let C = boolean(Value3); let D = boolean(Value4); // Set the size of text textSize(16); // Set the text color fill(color('red')); // Getting boolean representation text("Boolean representation of value 'true' is: " + A, 50, 30); text("Boolean representation of value 'false' is: " + B, 50, 60); text("Boolean representation of value 'Geeks' is: " + C, 50, 90); text("Boolean representation of array of values are: " + D, 50, 110); }
Producción:
Nota: De los ejemplos anteriores, si el parámetro es un valor distinto de cero, devuelve verdadero y para las strings, solo la string «verdadera» devuelve verdadero; de lo contrario, devuelve una salida falsa para cualquier otra string.
Referencia: https://p5js.org/reference/#/p5/boolean
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA