Is it possible to use jsmeter for analysis of performance of javascript on my own application?
I am not talking about .js files, I want to measure the performance of javascript on my asp.net application pages. 
Are there any other tools for same purpose?
            Asked
            
        
        
            Active
            
        
            Viewed 193 times
        
    3
            
            
         
    
    
        Ruchit Rami
        
- 2,273
- 4
- 28
- 53
2 Answers
0
            
            
        I am not sure if there are any third party tools available but you can refer to answers here: How to measure time taken by a function to execute
You will notice console.time and console.timeEnd can be used to easily measure performance of your js.
 
    
    
        Community
        
- 1
- 1
 
    
    
        Prashant Lakhlani
        
- 5,758
- 5
- 25
- 39
0
            You can use build-in browser profiles. For example Chrome profiler or Firebug for Firefox to measure the time of execution.
 
    
    
        Mikhail Payson
        
- 923
- 8
- 12