Choose an element within my range using the variable angularjs

I am working on a function in my controller that takes in a parameter, let's call it time, and I want to use it to reference an ng-model in my scope.

This is what I currently have:

$scope.myFunction = function(){
  $scope.minutes = 1;
}

This is what I aim to achieve:

$scope.myFunction = function(time){
  $scope.time = 1;
}

Here, the variable time represents the parameter received and contains the value minutes.

Thank you!

Answer №1

When receiving the variable name as a parameter:

$scope.updateProperty = function(propertyName) {
  $scope[propertyName] = 1;
};

Similar questions

If you have not found the answer to your question or you are interested in this topic, then look at other similar questions below or use the search

Having trouble toggling between the trending and search features on giphy website

I've been developing a chat application with NextJS and I'm currently working on integrating GIPHY images into it. Although I have the basic setup in place, I'm facing issues when switching between the giphy.search() and giphy.trending() fu ...

View content from a text file on a webpage

Hi everyone, I could really use some assistance with a project I'm currently working on. As someone who is new to programming, I am facing a challenge. My goal is to showcase the contents of a plain text file on a webpage. This text file, titled titl ...

Why isn't my callback working? Can anyone help me figure out what I did wrong?

I'm currently facing an issue while making an asynchronous call to Redis and attempting to utilize a callback to inform async.js about the completion of the query. I am consistently receiving an error message stating "callback is not a function". Can ...

When attempting to convert large objects into JSON using JSON.stringify, a RangeError is thrown due to

Trying to convert a massive JavaScript Object into a string using JSON.stringify in my Node.js application. The objects are extremely large (tens of mega bytes) and do not contain any functions. I need to save the serialized objects to a file. However, I a ...

Create a Jest unit test for a specific function

I started my first unit test in react with jest this afternoon. The initial 5 tests I need to do involve testing the return functions, which isn't too difficult. However, I'm struggling to understand how to perform unit testing on my login funct ...

Can I substitute custom tags for the traditional <p> tag?

My HTML with CSS has an issue where a custom HTML tag is not displaying the text while my CSS picks up another tag. Interestingly, replacing <title>Layout Controls</title> with <p>Layout Controls</p> resolves the problem and shows t ...

Choose a specific option from the dropdown menu using a URL parameter

After reviewing this code snippet: <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script> // <![CDATA[ $(document).ready(function() { // Parse your query parameters here, and assi ...

Utilize a MongoDB query to locate a single document and include a conditional statement within the update operation

I've been struggling with this problem for quite some time now and I could really use some guidance from experts here on SO. Essentially, what I am trying to achieve is to locate a specific document using a provided _id, and then execute a conditional ...

Conceal dropdown options when there is no text entered

To achieve the functionality of hiding dropdown values when there is no text in the search bar, you can use the following code snippet. The code provided below works perfectly for single selection. However, if you allow multiple value selections, it automa ...

Issue with jQuery element disappearing as it scrolls out of view

I'm currently in the process of creating a schedule, and it's going well so far. However, there is one feature that I'm struggling with. Within an ul element that has a fixed height to enable scrolling, there are "Labels" (li.dayLabel) that ...

Unable to run for loop in vue.js

Hello, I'm a newcomer to using Vue.js and am encountering an issue with executing a simple for loop in my code. Any assistance or guidance would be greatly appreciated. Here is the snippet of my code: var Vue = require('vue'); Vue.use(requi ...

Ways to improve the PHP variable value without refreshing the page when a click event occurs

How can the name attribute in an input field be dynamically updated after a form is submitted through an AJAX request, with the database receiving a new value that should increment a count without page refresh? The goal is to submit the form via AJAX witho ...

What is the method for including a dynamic image within the 'startAdornment' of MUI's Autocomplete component?

I'm currently utilizing MUI's autocomplete component to showcase some of my objects as recommendations. Everything is functioning correctly, however, I am attempting to include an avatar as a start adornment within the textfield (inside renderInp ...

Utilizing AngularJS: accessing dynamic object titles from an array of objects

Is there a way to dynamically read an object from a list of objects using an object key? Here is an example of my complex object: $scope.mainObject = { name : "Some value", desc : "Some desc", key1: { arrayLst: [] }, key2: { arr ...

Ensure that all values are equal before continuing to run the function within each jQuery function

When the provided code is executed, it checks if any of the input values do not match the attribute value. If a mismatch is found, it returns false and does not call the function "printDiv()", which is used for window printing. However, an error alert mess ...

Proper method for updating a component prop in Vue.js from within its method

Here is the code snippet for a Vue.js component: var list = Vue.component('list', { props: ['items', 'headertext', 'placeholder'], template: ` <div class="col s6"> <div class="search"> ...

Converting URL-esque information to JSON using JavaScript

Does anyone have a solution for converting an array of URL-like data into JSON format? For example, how can we convert the array ["a.b.c.d", "a.c.e.f", "a.b.c.g"] into the following JSON structure: items:{ text: "a", items:[ { ...

What is causing this code to display an error message?

An issue has been identified in the second line. "ReferenceError: specialTrick is not defined at CoolGuy.showoff (<anonymous>:23:40) at <anonymous>:31:5 at Object.InjectedScript._evaluateOn (<anonymous>:875:140) at Object ...

Transition smoothly with a fade effect when switching between models

I am in the process of creating a basic query system. While I can display questions one at a time, I am looking to incorporate transitions when switching between questions. To further illustrate my issue, I have set up a Plunker demonstration: http://plnk ...

The Street View feature on Google Maps API is now showcasing a cool,

I have been attempting to showcase the interior of various businesses using the Google Maps API street view feature. Initially, I was able to retrieve the place_id and then use it to access any available street view panoramas. However, this functionality s ...