Open In App

p5.js | isLoaded() Function

The isLoaded() function is an inbuilt function of p5.sound library that verifies that the loadSound() function performed successfully, if that loadSound was successful then this function will return true else false. That means it returns Boolean value.

Syntax:



isLoaded()

Note: All the sound-related functions only work when the sound library is included in the head section of the index.html file.

Parameters: This function does not accept any parameter.



Below example illustrate the p5.isLoaded() function in JavaScript:
Example:




var sound; 
var load;
   
function preload() { 
   
    // Initialize sound 
    sound = loadSound("pfivesound.mp3"); 
   
function setup() { 
           
    //Checking loaded or not
    var load = sound.isLoaded();
    console.log(load);
      
    // Playing the preloaded sound 
    sound.play(); 

Output:

true

Online editor: https://editor.p5js.org/
Environment Setup: https://www.geeksforgeeks.org/p5-js-soundfile-object-installation-and-methods/amp/

Supported Browsers: The browsers supported by p5.isLoaded function are listed below:

Article Tags :