Skip to main content
4 answers
  1. Aug 18, 2017, 9:43 AM
    You can use console.log the similar way you do in javascript.

    This is how you can write console.log in you lightning controller or helper.

    ({

    myAction : function(component, event, helper) {

    console.log('Here');

    }

    })

0/9000